1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ 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 >com.pdizzle</groupId >
5
+ <artifactId >student-services</artifactId >
6
+ <version >1.0.0-SNAPSHOT</version >
7
+ <packaging >war</packaging >
8
+ <repositories >
9
+ <repository >
10
+ <id >central</id >
11
+ <name >Central Repository</name >
12
+ <url >http://repo1.maven.org/maven2</url >
13
+ <layout >default</layout >
14
+ <snapshots >
15
+ <enabled >false</enabled >
16
+ </snapshots >
17
+ </repository >
18
+ </repositories >
19
+
20
+ <properties >
21
+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
22
+ <resteasy .version>3.0.8.Final</resteasy .version>
23
+ <spring .version>4.1.0.RELEASE</spring .version>
24
+ <logback >1.0.13</logback >
25
+ <slf4j >1.7.5</slf4j >
26
+ </properties >
27
+
28
+ <dependencies >
29
+ <dependency >
30
+ <groupId >org.jboss.resteasy</groupId >
31
+ <artifactId >resteasy-spring</artifactId >
32
+ <version >${resteasy.version} </version >
33
+ </dependency >
34
+ <dependency >
35
+ <groupId >org.jboss.resteasy</groupId >
36
+ <artifactId >resteasy-servlet-initializer</artifactId >
37
+ <version >${resteasy.version} </version >
38
+ </dependency >
39
+ <dependency >
40
+ <groupId >org.jboss.resteasy</groupId >
41
+ <artifactId >resteasy-jackson-provider</artifactId >
42
+ <version >${resteasy.version} </version >
43
+ </dependency >
44
+ <dependency >
45
+ <groupId >org.jboss.resteasy</groupId >
46
+ <artifactId >resteasy-client</artifactId >
47
+ <version >${resteasy.version} </version >
48
+ <scope >test</scope >
49
+ </dependency >
50
+ <dependency >
51
+ <groupId >org.springframework</groupId >
52
+ <artifactId >spring-webmvc</artifactId >
53
+ <version >${spring.version} </version >
54
+ </dependency >
55
+ <dependency >
56
+ <groupId >org.springframework</groupId >
57
+ <artifactId >spring-jdbc</artifactId >
58
+ <version >${spring.version} </version >
59
+ </dependency >
60
+ <dependency >
61
+ <groupId >javax.servlet</groupId >
62
+ <artifactId >javax.servlet-api</artifactId >
63
+ <version >3.1.0</version >
64
+ <scope >provided</scope >
65
+ </dependency >
66
+ <dependency >
67
+ <groupId >ch.qos.logback</groupId >
68
+ <artifactId >logback-core</artifactId >
69
+ <version >${logback} </version >
70
+ </dependency >
71
+ <dependency >
72
+ <groupId >ch.qos.logback</groupId >
73
+ <artifactId >logback-classic</artifactId >
74
+ <version >${logback} </version >
75
+ </dependency >
76
+ <dependency >
77
+ <groupId >org.slf4j</groupId >
78
+ <artifactId >jul-to-slf4j</artifactId >
79
+ <version >${slf4j} </version >
80
+ </dependency >
81
+ <dependency >
82
+ <groupId >org.slf4j</groupId >
83
+ <artifactId >jcl-over-slf4j</artifactId >
84
+ <version >${slf4j} </version >
85
+ </dependency >
86
+ <dependency >
87
+ <groupId >org.apache.tomcat</groupId >
88
+ <artifactId >tomcat-jdbc</artifactId >
89
+ <version >7.0.55</version >
90
+ <scope >compile</scope >
91
+ </dependency >
92
+ <dependency >
93
+ <groupId >org.jasypt</groupId >
94
+ <artifactId >jasypt</artifactId >
95
+ <version >1.9.2</version >
96
+ </dependency >
97
+ <dependency >
98
+ <groupId >net.sourceforge.jtds</groupId >
99
+ <artifactId >jtds</artifactId >
100
+ <version >1.3.1</version >
101
+ </dependency >
102
+ <dependency >
103
+ <groupId >org.springframework</groupId >
104
+ <artifactId >spring-test</artifactId >
105
+ <version >${spring.version} </version >
106
+ <scope >test</scope >
107
+ </dependency >
108
+ <dependency >
109
+ <groupId >junit</groupId >
110
+ <artifactId >junit</artifactId >
111
+ <version >4.11</version >
112
+ <scope >test</scope >
113
+ </dependency >
114
+ </dependencies >
115
+
116
+ <build >
117
+
118
+ <plugins >
119
+ <plugin >
120
+ <artifactId >maven-compiler-plugin</artifactId >
121
+ <version >3.1</version >
122
+ <configuration >
123
+ <target >1.7</target >
124
+ <source >1.7</source >
125
+ <fork >true</fork >
126
+ </configuration >
127
+ </plugin >
128
+
129
+ <plugin >
130
+ <artifactId >maven-war-plugin</artifactId >
131
+ <version >2.4</version >
132
+ <executions >
133
+ <execution >
134
+ <id >default-war</id >
135
+ <phase >package</phase >
136
+ <goals >
137
+ <goal >war</goal >
138
+ </goals >
139
+ <configuration >
140
+ <manifest >
141
+ <addDefaultImplementationEntries >true</addDefaultImplementationEntries >
142
+ </manifest >
143
+ <failOnMissingWebXml >false</failOnMissingWebXml >
144
+ </configuration >
145
+ </execution >
146
+ </executions >
147
+ </plugin >
148
+
149
+
150
+
151
+ <plugin >
152
+ <groupId >org.apache.tomcat.maven</groupId >
153
+ <artifactId >tomcat7-maven-plugin</artifactId >
154
+ <version >2.2</version >
155
+ <dependencies >
156
+ <dependency >
157
+ <groupId >org.apache.tomcat</groupId >
158
+ <artifactId >tomcat-jdbc</artifactId >
159
+ <version >7.0.55</version >
160
+ <scope >compile</scope >
161
+ </dependency >
162
+ <dependency >
163
+ <groupId >net.sourceforge.jtds</groupId >
164
+ <artifactId >jtds</artifactId >
165
+ <version >1.3.1</version >
166
+ </dependency >
167
+ </dependencies >
168
+ <configuration >
169
+ <path >/</path >
170
+ <systemProperties >
171
+ <env >${env} </env >
172
+ </systemProperties >
173
+ </configuration >
174
+ </plugin >
175
+ </plugins >
176
+ </build >
177
+
178
+ </project >
0 commit comments