|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + 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"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <parent> |
| 6 | + <groupId>org.springframework.boot</groupId> |
| 7 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 8 | + <version>2.4.1</version> |
| 9 | + <relativePath /> |
| 10 | + <!-- lookup parent from repository --> |
| 11 | + </parent> |
| 12 | + <groupId>de.smotastic.microservices</groupId> |
| 13 | + <artifactId>config-server</artifactId> |
| 14 | + <version>0.0.1-SNAPSHOT</version> |
| 15 | + <name>config-server</name> |
| 16 | + <description>Config Server holding general configuration for the microservices</description> |
| 17 | + |
| 18 | + <properties> |
| 19 | + <java.version>11</java.version> |
| 20 | + <spring-cloud.version>2020.0.0</spring-cloud.version> |
| 21 | + </properties> |
| 22 | + |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>org.springframework.boot</groupId> |
| 26 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>org.springframework.cloud</groupId> |
| 30 | + <artifactId>spring-cloud-config-server</artifactId> |
| 31 | + </dependency> |
| 32 | + |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-devtools</artifactId> |
| 36 | + <scope>runtime</scope> |
| 37 | + <optional>true</optional> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.springframework.boot</groupId> |
| 41 | + <artifactId>spring-boot-starter-test</artifactId> |
| 42 | + <scope>test</scope> |
| 43 | + </dependency> |
| 44 | + </dependencies> |
| 45 | + |
| 46 | + <dependencyManagement> |
| 47 | + <dependencies> |
| 48 | + <dependency> |
| 49 | + <groupId>org.springframework.cloud</groupId> |
| 50 | + <artifactId>spring-cloud-dependencies</artifactId> |
| 51 | + <version>${spring-cloud.version}</version> |
| 52 | + <type>pom</type> |
| 53 | + <scope>import</scope> |
| 54 | + </dependency> |
| 55 | + </dependencies> |
| 56 | + </dependencyManagement> |
| 57 | + |
| 58 | + <build> |
| 59 | + <plugins> |
| 60 | + <plugin> |
| 61 | + <groupId>org.springframework.boot</groupId> |
| 62 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 63 | + </plugin> |
| 64 | + </plugins> |
| 65 | + </build> |
| 66 | + |
| 67 | + <repositories> |
| 68 | + <repository> |
| 69 | + <id>spring-milestones</id> |
| 70 | + <name>Spring Milestones</name> |
| 71 | + <url>https://repo.spring.io/milestone</url> |
| 72 | + </repository> |
| 73 | + </repositories> |
| 74 | + |
| 75 | +</project> |
0 commit comments