|
5 | 5 | <artifactId>WebGoat</artifactId>
|
6 | 6 | <packaging>war</packaging>
|
7 | 7 | <version>6.0-SNAPSHOT</version>
|
8 |
| - |
| 8 | + |
9 | 9 | <repositories>
|
10 | 10 | <repository>
|
11 | 11 | <id>maven2-repository.dev.java.net</id>
|
12 | 12 | <name>Java.net Maven 2 Repository</name>
|
13 | 13 | <url>http://download.java.net/maven/2</url>
|
14 | 14 | </repository>
|
15 | 15 | </repositories>
|
16 |
| - |
17 |
| - <!-- Shared version number properties --> |
| 16 | + |
| 17 | + <!-- Shared version number properties --> |
18 | 18 | <properties>
|
19 |
| - <org.springframework.version>3.0.5.RELEASE</org.springframework.version> |
20 |
| - <spring.security.version>3.1.2.RELEASE</spring.security.version> |
21 |
| - <tiles.version>2.2.2</tiles.version> |
22 |
| - </properties> |
| 19 | + <org.springframework.version>3.0.5.RELEASE</org.springframework.version> |
| 20 | + <spring.security.version>3.1.2.RELEASE</spring.security.version> |
| 21 | + <tiles.version>2.2.2</tiles.version> |
| 22 | + </properties> |
23 | 23 |
|
24 | 24 | <build>
|
25 |
| - <resources> |
| 25 | + <sourceDirectory>${basedir}/java</sourceDirectory> |
| 26 | + <resources> |
26 | 27 | <resource>
|
27 |
| - <directory>java</directory> |
| 28 | + <directory>${basedir}/java</directory> |
28 | 29 | </resource>
|
29 | 30 | <resource>
|
30 |
| - <directory>${basedir}resources</directory> |
| 31 | + <directory>${basedir}/resources</directory> |
31 | 32 | </resource>
|
32 | 33 | </resources>
|
33 | 34 | <plugins>
|
|
41 | 42 | </configuration>
|
42 | 43 | </plugin>
|
43 | 44 | <plugin>
|
44 |
| - <artifactId>maven-eclipse-plugin</artifactId> |
45 |
| - <configuration> |
46 |
| - <wtpversion>1.5</wtpversion> |
47 |
| - </configuration> |
48 |
| - </plugin> |
| 45 | + <artifactId>maven-eclipse-plugin</artifactId> |
| 46 | + <configuration> |
| 47 | + <wtpversion>1.5</wtpversion> |
| 48 | + </configuration> |
| 49 | + </plugin> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-war-plugin</artifactId> |
| 53 | + <configuration> |
| 54 | + <warSourceDirectory>${basedir}/webapp</warSourceDirectory> |
| 55 | + </configuration> |
| 56 | + </plugin> |
49 | 57 | </plugins>
|
50 | 58 | </build>
|
51 | 59 |
|
|
95 | 103 | <artifactId>commons-digester</artifactId>
|
96 | 104 | <version>1.4.1</version>
|
97 | 105 | <exclusions>
|
98 |
| - <exclusion> |
99 |
| - <groupId>xml-apis</groupId> |
100 |
| - <artifactId>xml-apis</artifactId> |
101 |
| - </exclusion> |
102 |
| - </exclusions> |
| 106 | + <exclusion> |
| 107 | + <groupId>xml-apis</groupId> |
| 108 | + <artifactId>xml-apis</artifactId> |
| 109 | + </exclusion> |
| 110 | + </exclusions> |
103 | 111 | </dependency>
|
104 | 112 | <dependency>
|
105 | 113 | <groupId>commons-logging</groupId>
|
|
155 | 163 | <groupId>net.sourceforge.jtds</groupId>
|
156 | 164 | <artifactId>jtds</artifactId>
|
157 | 165 | <version>1.2.2</version>
|
158 |
| - </dependency> |
159 |
| - <dependency> |
| 166 | + </dependency> |
| 167 | + <dependency> |
160 | 168 | <groupId>org.apache.tomcat</groupId>
|
161 | 169 | <artifactId>tomcat-catalina</artifactId>
|
162 | 170 | <version>7.0.27</version>
|
|
173 | 181 | <version>6.0</version>
|
174 | 182 | <scope>provided</scope>
|
175 | 183 | </dependency>
|
176 |
| - |
| 184 | + |
177 | 185 | <dependency>
|
178 | 186 | <groupId>org.springframework</groupId>
|
179 | 187 | <artifactId>spring-core</artifactId>
|
180 | 188 | <version>${org.springframework.version}</version>
|
181 | 189 | </dependency>
|
182 | 190 |
|
183 |
| - <!-- Spring MVC framework --> |
184 |
| - <dependency> |
| 191 | + <!-- Spring MVC framework --> |
| 192 | + <dependency> |
185 | 193 | <groupId>org.springframework</groupId>
|
186 | 194 | <artifactId>spring-webmvc</artifactId>
|
187 | 195 | <version>${org.springframework.version}</version>
|
188 |
| - <type>jar</type> |
189 |
| - </dependency> |
190 |
| - |
| 196 | + <type>jar</type> |
| 197 | + </dependency> |
| 198 | + |
191 | 199 | <dependency>
|
192 | 200 | <groupId>org.springframework.security</groupId>
|
193 | 201 | <artifactId>spring-security-core</artifactId>
|
194 | 202 | <version>${spring.security.version}</version>
|
195 | 203 | </dependency>
|
196 |
| - |
| 204 | + |
197 | 205 | <dependency>
|
198 |
| - <groupId>org.springframework.security</groupId> |
199 |
| - <artifactId>spring-security-config</artifactId> |
200 |
| - <version>${spring.security.version}</version> |
201 |
| - </dependency> |
202 |
| - |
| 206 | + <groupId>org.springframework.security</groupId> |
| 207 | + <artifactId>spring-security-config</artifactId> |
| 208 | + <version>${spring.security.version}</version> |
| 209 | + </dependency> |
| 210 | + |
203 | 211 | <dependency>
|
204 |
| - <groupId>org.springframework.security</groupId> |
205 |
| - <artifactId>spring-security-web</artifactId> |
206 |
| - <version>${spring.security.version}</version> |
207 |
| - </dependency> |
| 212 | + <groupId>org.springframework.security</groupId> |
| 213 | + <artifactId>spring-security-web</artifactId> |
| 214 | + <version>${spring.security.version}</version> |
| 215 | + </dependency> |
208 | 216 |
|
209 |
| - <!-- Apache Commons Upload --> |
| 217 | + <!-- Apache Commons Upload --> |
210 | 218 | <dependency>
|
211 | 219 | <groupId>commons-fileupload</groupId>
|
212 | 220 | <artifactId>commons-fileupload</artifactId>
|
213 | 221 | <version>1.2.2</version>
|
214 | 222 | </dependency>
|
215 | 223 |
|
216 |
| - <!-- Apache Commons Upload --> |
| 224 | + <!-- Apache Commons Upload --> |
217 | 225 | <dependency>
|
218 | 226 | <groupId>commons-io</groupId>
|
219 | 227 | <artifactId>commons-io</artifactId>
|
220 | 228 | <version>1.3.2</version>
|
221 | 229 | </dependency>
|
222 | 230 |
|
223 |
| - <!-- JSTL --> |
| 231 | + <!-- JSTL --> |
224 | 232 | <dependency>
|
225 | 233 | <groupId>javax.servlet</groupId>
|
226 | 234 | <artifactId>jstl</artifactId>
|
|
232 | 240 | <artifactId>standard</artifactId>
|
233 | 241 | <version>1.1.2</version>
|
234 | 242 | </dependency>
|
235 |
| - |
| 243 | + |
236 | 244 | <dependency>
|
237 | 245 | <groupId>log4j</groupId>
|
238 | 246 | <artifactId>log4j</artifactId>
|
239 | 247 | <version>1.2.15</version>
|
240 | 248 | <exclusions>
|
241 |
| - <exclusion> |
| 249 | + <exclusion> |
242 | 250 | <groupId>javax.jms</groupId>
|
243 | 251 | <artifactId>jms</artifactId>
|
244 |
| - </exclusion> |
245 |
| - <exclusion> |
| 252 | + </exclusion> |
| 253 | + <exclusion> |
246 | 254 | <groupId>com.sun.jdmk</groupId>
|
247 | 255 | <artifactId>jmxtools</artifactId>
|
248 |
| - </exclusion> |
249 |
| - <exclusion> |
| 256 | + </exclusion> |
| 257 | + <exclusion> |
250 | 258 | <groupId>com.sun.jmx</groupId>
|
251 | 259 | <artifactId>jmxri</artifactId>
|
252 |
| - </exclusion> |
| 260 | + </exclusion> |
253 | 261 | </exclusions>
|
254 | 262 | </dependency>
|
255 | 263 | <dependency>
|
|
258 | 266 | <version>4.8.1</version>
|
259 | 267 | <type>jar</type>
|
260 | 268 | </dependency>
|
261 |
| - <dependency> |
| 269 | + <dependency> |
262 | 270 | <groupId>org.apache.tiles</groupId>
|
263 | 271 | <artifactId>tiles-core</artifactId>
|
264 | 272 | <version>${tiles.version}</version>
|
265 |
| - <type>jar</type> |
266 |
| - </dependency> |
267 |
| - <dependency> |
| 273 | + <type>jar</type> |
| 274 | + </dependency> |
| 275 | + <dependency> |
268 | 276 | <groupId>org.apache.tiles</groupId>
|
269 | 277 | <artifactId>tiles-template</artifactId>
|
270 | 278 | <version>${tiles.version}</version>
|
271 |
| - <type>jar</type> |
272 |
| - </dependency> |
273 |
| - <dependency> |
| 279 | + <type>jar</type> |
| 280 | + </dependency> |
| 281 | + <dependency> |
274 | 282 | <groupId>org.apache.tiles</groupId>
|
275 | 283 | <artifactId>tiles-servlet</artifactId>
|
276 | 284 | <version>${tiles.version}</version>
|
277 | 285 | <type>jar</type>
|
278 |
| - </dependency> |
279 |
| - <dependency> |
| 286 | + </dependency> |
| 287 | + <dependency> |
280 | 288 | <groupId>org.apache.tiles</groupId>
|
281 | 289 | <artifactId>tiles-jsp</artifactId>
|
282 | 290 | <version>${tiles.version}</version>
|
283 | 291 | <type>jar</type>
|
284 |
| - </dependency> |
285 |
| - <dependency> |
| 292 | + </dependency> |
| 293 | + <dependency> |
286 | 294 | <groupId>org.slf4j</groupId>
|
287 | 295 | <artifactId>slf4j-api</artifactId>
|
288 | 296 | <version>1.5.8</version>
|
289 | 297 | <type>jar</type>
|
290 |
| - </dependency> |
291 |
| - <dependency> |
| 298 | + </dependency> |
| 299 | + <dependency> |
292 | 300 | <groupId>org.slf4j</groupId>
|
293 | 301 | <artifactId>slf4j-log4j12</artifactId>
|
294 | 302 | <version>1.5.8</version>
|
295 | 303 | <type>jar</type>
|
296 |
| - </dependency> |
297 |
| - |
| 304 | + </dependency> |
| 305 | + |
298 | 306 | <!-- ************* END spring MVC and related dependencies ************** -->
|
299 |
| - |
| 307 | + |
300 | 308 | </dependencies>
|
301 | 309 | </project>
|
0 commit comments