|
|
@@ -1,4 +1,8 @@
|
|
1
|
|
-<?xml version="1.0" encoding="UTF-8"?><project>
|
|
|
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"
|
|
|
4
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
5
|
+
|
|
2
|
6
|
<modelVersion>4.0.0</modelVersion>
|
|
3
|
7
|
<groupId>se.citerus</groupId>
|
|
4
|
8
|
<artifactId>register-app</artifactId>
|
|
|
@@ -21,6 +25,8 @@
|
|
21
|
25
|
<archive>
|
|
22
|
26
|
<manifest>
|
|
23
|
27
|
<mainClass>se.citerus.App</mainClass>
|
|
|
28
|
+ <addClasspath>true</addClasspath>
|
|
|
29
|
+ <classpathPrefix>lib</classpathPrefix>
|
|
24
|
30
|
</manifest>
|
|
25
|
31
|
</archive>
|
|
26
|
32
|
</configuration>
|
|
|
@@ -28,14 +34,10 @@
|
|
28
|
34
|
<plugin>
|
|
29
|
35
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
30
|
36
|
<configuration>
|
|
31
|
|
- <descriptorRefs>
|
|
32
|
|
- <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
33
|
|
- </descriptorRefs>
|
|
34
|
|
- <archive>
|
|
35
|
|
- <manifest>
|
|
36
|
|
- <mainClass>se.citerus.App</mainClass>
|
|
37
|
|
- </manifest>
|
|
38
|
|
- </archive>
|
|
|
37
|
+ <descriptors>
|
|
|
38
|
+ <descriptor>assembly.xml</descriptor>
|
|
|
39
|
+ </descriptors>
|
|
|
40
|
+ <finalName>IncidentLoggingApplication</finalName>
|
|
39
|
41
|
</configuration>
|
|
40
|
42
|
</plugin>
|
|
41
|
43
|
</plugins>
|
|
|
@@ -63,8 +65,18 @@
|
|
63
|
65
|
</dependency>
|
|
64
|
66
|
<dependency>
|
|
65
|
67
|
<groupId>org.springframework</groupId>
|
|
66
|
|
- <artifactId>spring</artifactId>
|
|
67
|
|
- <version>2.5</version>
|
|
|
68
|
+ <artifactId>spring-context</artifactId>
|
|
|
69
|
+ <version>2.5.5</version>
|
|
|
70
|
+ </dependency>
|
|
|
71
|
+ <dependency>
|
|
|
72
|
+ <groupId>org.springframework</groupId>
|
|
|
73
|
+ <artifactId>spring-web</artifactId>
|
|
|
74
|
+ <version>2.5.5</version>
|
|
|
75
|
+ </dependency>
|
|
|
76
|
+ <dependency>
|
|
|
77
|
+ <groupId>org.springframework</groupId>
|
|
|
78
|
+ <artifactId>spring-aop</artifactId>
|
|
|
79
|
+ <version>2.5.5</version>
|
|
68
|
80
|
</dependency>
|
|
69
|
81
|
<dependency>
|
|
70
|
82
|
<groupId>com.jgoodies</groupId>
|
|
|
@@ -96,7 +108,7 @@
|
|
96
|
108
|
<groupId>org.springframework</groupId>
|
|
97
|
109
|
</exclusion>
|
|
98
|
110
|
<exclusion>
|
|
99
|
|
- <artifactId>spring-hibernate3</artifactId>
|
|
|
111
|
+ <artifactId>spring-orm</artifactId>
|
|
100
|
112
|
<groupId>org.springframework</groupId>
|
|
101
|
113
|
</exclusion>
|
|
102
|
114
|
<exclusion>
|
|
|
@@ -108,11 +120,11 @@
|
|
108
|
120
|
<groupId>org.springframework</groupId>
|
|
109
|
121
|
</exclusion>
|
|
110
|
122
|
<exclusion>
|
|
111
|
|
- <artifactId>spring-mock</artifactId>
|
|
|
123
|
+ <artifactId>spring-context</artifactId>
|
|
112
|
124
|
<groupId>org.springframework</groupId>
|
|
113
|
125
|
</exclusion>
|
|
114
|
126
|
<exclusion>
|
|
115
|
|
- <artifactId>spring-context</artifactId>
|
|
|
127
|
+ <artifactId>spring-jms</artifactId>
|
|
116
|
128
|
<groupId>org.springframework</groupId>
|
|
117
|
129
|
</exclusion>
|
|
118
|
130
|
<exclusion>
|