spring-boot/spring-boot-samples/spring-boot-sample-actuator/pom.xml

87 lines
2.7 KiB
XML
Raw Normal View History

2013-04-24 17:02:07 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2013-04-24 17:02:07 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>${revision}</version>
2013-04-24 17:02:07 +08:00
</parent>
2013-07-31 16:46:34 +08:00
<artifactId>spring-boot-sample-actuator</artifactId>
2014-04-01 16:10:51 +08:00
<name>Spring Boot Actuator Sample</name>
<description>Spring Boot Actuator Sample</description>
2013-04-24 17:02:07 +08:00
<properties>
2013-07-06 01:26:50 +08:00
<main.basedir>${basedir}/../..</main.basedir>
2013-04-24 17:02:07 +08:00
</properties>
2013-07-06 01:26:50 +08:00
<dependencies>
2016-12-31 03:10:44 +08:00
<!-- Compile -->
2013-07-06 01:26:50 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
2013-08-01 03:57:25 +08:00
<artifactId>spring-boot-starter-actuator</artifactId>
2013-07-06 01:26:50 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2013-08-06 20:40:22 +08:00
<artifactId>spring-boot-starter-web</artifactId>
2013-07-06 01:26:50 +08:00
</dependency>
2017-07-31 15:46:54 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
2017-07-31 15:46:54 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
2016-12-31 03:10:44 +08:00
<!-- Runtime -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
2016-12-31 00:57:14 +08:00
<scope>runtime</scope>
</dependency>
2016-12-31 03:10:44 +08:00
<!-- Optional -->
2016-12-31 00:57:14 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
2016-12-31 03:10:44 +08:00
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2013-07-06 01:26:50 +08:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
</configuration>
<executions>
<execution>
<id>generate build info</id>
<goals>
<goal>build-info</goal>
</goals>
<configuration>
<additionalProperties>
<encoding.source>${project.build.sourceEncoding}</encoding.source>
<encoding.reporting>${project.reporting.outputEncoding}</encoding.reporting>
<java.source>${maven.compiler.source}</java.source>
<java.target>${maven.compiler.target}</java.target>
</additionalProperties>
</configuration>
</execution>
</executions>
2013-07-06 01:26:50 +08:00
</plugin>
</plugins>
</build>
2013-04-24 17:02:07 +08:00
</project>