comparison spring-cloud-config-client/pom.xml @ 20:452cfefb0e1e default tip

Einfache Spring Application, die ihre config aus dem Spring Cloud Config Server liest
author Dirk Olmes <dirk.olmes@codedo.de>
date Thu, 17 Sep 2020 17:25:15 +0200
parents
children
comparison
equal deleted inserted replaced
19:fe6a57f7a2cf 20:452cfefb0e1e
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.comline</groupId>
5 <artifactId>spring-cloud-config-client</artifactId>
6 <version>1.0-SNAPSHOT</version>
7 <packaging>jar</packaging>
8 <name>new project</name>
9 <url>http://maven.apache.org</url>
10
11 <properties>
12 <maven.compiler.source>1.8</maven.compiler.source>
13 <maven.compiler.target>1.8</maven.compiler.target>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16 </properties>
17
18 <dependencyManagement>
19 <dependencies>
20 <dependency>
21 <groupId>org.springframework.boot</groupId>
22 <artifactId>spring-boot-starter-parent</artifactId>
23 <version>2.3.3.RELEASE</version>
24 <type>pom</type>
25 <scope>import</scope>
26 </dependency>
27 <dependency>
28 <groupId>org.springframework.cloud</groupId>
29 <artifactId>spring-cloud-dependencies</artifactId>
30 <version>Hoxton.SR8</version>
31 <type>pom</type>
32 <scope>import</scope>
33 </dependency>
34 </dependencies>
35 </dependencyManagement>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-web</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.springframework.cloud</groupId>
44 <artifactId>spring-cloud-config-client</artifactId>
45 </dependency>
46
47 <!-- test dependencies -->
48 <dependency>
49 <groupId>org.junit.jupiter</groupId>
50 <artifactId>junit-jupiter-engine</artifactId>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.junit.platform</groupId>
55 <artifactId>junit-platform-launcher</artifactId>
56 <scope>test</scope>
57 </dependency>
58 </dependencies>
59
60 <build>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-compiler-plugin</artifactId>
65 <version>3.8.1</version>
66 <configuration>
67 <encoding>${project.build.sourceEncoding}</encoding>
68 <source>${maven.compiler.source}</source>
69 <target>${maven.compiler.target}</target>
70 </configuration>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-surefire-plugin</artifactId>
75 <version>3.0.0-M5</version>
76 <configuration>
77 <!-- produce large stack traces in case something goes wrong for better debugging from the logs -->
78 <trimStackTrace>false</trimStackTrace>
79 <!-- dump the info right into the logfile instead of into separate files -->
80 <useFile>false</useFile>
81 </configuration>
82 </plugin>
83 </plugins>
84 </build>
85 </project>