2019-07-28 10:12:14 -04:00
|
|
|
<?xml version="1.0"?>
|
2019-09-16 09:37:38 -04:00
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
|
|
|
</parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-boot-management</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-boot-management</name>
|
2019-07-28 10:12:14 -04:00
|
|
|
|
2019-09-16 09:37:38 -04:00
|
|
|
<properties>
|
|
|
|
<start-class>com.baeldung.spring.boot.management.logging.LoggingApplication</start-class>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<spring-boot-admin-starter-client.version>2.1.6</spring-boot-admin-starter-client.version>
|
|
|
|
</properties>
|
2019-07-28 10:12:14 -04:00
|
|
|
|
2019-09-16 09:37:38 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
<version>${spring-boot-admin-starter-client.version}</version>
|
|
|
|
</dependency>
|
2019-07-28 10:12:14 -04:00
|
|
|
|
2019-09-16 09:37:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-07-28 10:12:14 -04:00
|
|
|
|
2019-09-16 09:37:38 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-07-28 10:12:14 -04:00
|
|
|
</project>
|