comparison spring-boot-playground/pom.xml @ 1:60afb461bf6c

Import des Spring boot playground
author Dirk Olmes <dirk.olmes@codedo.de>
date Tue, 11 Aug 2020 16:08:16 +0200
parents
children 92d52e4ac567
comparison
equal deleted inserted replaced
0:64e2ebad3366 1:60afb461bf6c
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 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.1.13.RELEASE</version>
9 <relativePath/>
10 </parent>
11 <groupId>de.comline</groupId>
12 <artifactId>spring-boot-playground</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>Spring boot playground</name>
15
16 <properties>
17 <jdk.version.source>1.8</jdk.version.source>
18 <jdk.version.target>1.8</jdk.version.target>
19 <java.version>${jdk.version.source}</java.version>
20 </properties>
21
22 <build>
23 <plugins>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-compiler-plugin</artifactId>
27 <configuration>
28 <verbose>true</verbose>
29 <source>${jdk.version.source}</source>
30 <target>${jdk.version.target}</target>
31 </configuration>
32 </plugin>
33 <plugin>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-maven-plugin</artifactId>
36 </plugin>
37 </plugins>
38 </build>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-web</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-test</artifactId>
49 <scope>test</scope>
50 <exclusions>
51 <exclusion>
52 <groupId>org.junit.vintage</groupId>
53 <artifactId>junit-vintage-engine</artifactId>
54 </exclusion>
55 </exclusions>
56 </dependency>
57 <!-- <dependency> -->
58 <!-- <groupId>org.junit.jupiter</groupId> -->
59 <!-- <artifactId>junit-jupiter</artifactId> -->
60 <!-- <version>5.6.2</version> -->
61 <!-- <scope>test</scope> -->
62 <!-- </dependency> -->
63 <dependency>
64 <groupId>org.hamcrest</groupId>
65 <artifactId>hamcrest</artifactId>
66 <version>2.2</version>
67 <scope>test</scope>
68 </dependency>
69 </dependencies>
70 </project>