-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
48 lines (41 loc) · 1.37 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.meisen.general</groupId>
<artifactId>net-meisen-general-gen-sbconfigurator</artifactId>
<version>TRUNK-SNAPSHOT</version>
<name>gen-sbconfigurator</name>
<description>Library which allows the definition of a general configuration (i.e. XML based) which is than translated into Spring contexts (using XSLT)</description>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>net.meisen.general</groupId>
<artifactId>net-meisen-general-gen-misc</artifactId>
<version>TRUNK-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>3.2.12.RELEASE</version>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.2</version>
</dependency>
<!-- tests -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.2.12.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>