2016-09-01 07:54:53 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-04-26 08:37:47 -04:00
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-09-01 07:54:53 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-11-30 11:46:08 -05:00
|
|
|
<artifactId>server</artifactId>
|
|
|
|
<name>server</name>
|
|
|
|
|
2016-09-01 07:54:53 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-config</artifactId>
|
2016-10-31 11:18:33 -04:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2016-09-01 07:54:53 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-config-server</artifactId>
|
2018-09-25 13:52:58 -04:00
|
|
|
</dependency>
|
2016-09-01 07:54:53 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
2018-09-25 13:52:58 -04:00
|
|
|
</dependency>
|
2016-09-01 07:54:53 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2018-09-25 13:52:58 -04:00
|
|
|
</dependency>
|
2016-09-01 07:54:53 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2018-09-25 13:52:58 -04:00
|
|
|
</plugin>
|
2016-09-01 07:54:53 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-12-08 17:16:17 -05:00
|
|
|
|
2016-09-01 07:54:53 -04:00
|
|
|
</project>
|