comparison spring-di-playground/pom.xml @ 0:64e2ebad3366

Import des plain Spring DI playground
author Dirk Olmes <dirk.olmes@codedo.de>
date Tue, 11 Aug 2020 16:05:44 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:64e2ebad3366
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 <groupId>de.comline</groupId>
6 <artifactId>spring-di-playground</artifactId>
7 <version>0.0.1-SNAPSHOT</version>
8 <name>Spring DI container playground</name>
9
10 <properties>
11 <jdk.version.source>1.8</jdk.version.source>
12 <jdk.version.target>1.8</jdk.version.target>
13 </properties>
14
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 <version>3.8.1</version>
21 <configuration>
22 <verbose>true</verbose>
23 <source>${jdk.version.source}</source>
24 <target>${jdk.version.target}</target>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.springframework</groupId>
33 <artifactId>spring-context</artifactId>
34 <version>5.1.14.RELEASE</version>
35 </dependency>
36
37 <dependency>
38 <groupId>org.junit.jupiter</groupId>
39 <artifactId>junit-jupiter</artifactId>
40 <version>5.6.2</version>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.hamcrest</groupId>
45 <artifactId>hamcrest</artifactId>
46 <version>2.2</version>
47 <scope>test</scope>
48 </dependency>
49 </dependencies>
50 </project>