2007-05-24 23:17:12 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2006-09-06 12:29:50 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2007-09-22 07:28:12 -04:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-parent</artifactId>
|
2008-06-03 09:41:38 -04:00
|
|
|
<version>2.0.2-SNAPSHOT</version>
|
2006-09-06 12:29:50 -04:00
|
|
|
</parent>
|
2007-09-22 07:28:12 -04:00
|
|
|
<artifactId>spring-security-sandbox</artifactId>
|
|
|
|
<name>Spring Security - Sandbox</name>
|
2006-09-06 12:37:28 -04:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>webwork</module>
|
|
|
|
<module>other</module>
|
2008-03-29 10:45:31 -04:00
|
|
|
<module>captcha</module>
|
2006-09-06 12:37:28 -04:00
|
|
|
</modules>
|
|
|
|
|
2006-09-06 12:29:50 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2007-09-22 07:28:12 -04:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
2008-06-03 09:41:38 -04:00
|
|
|
<version>2.0.2-SNAPSHOT</version>
|
2006-09-06 12:29:50 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2008-03-29 10:45:31 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2007-06-19 00:08:19 -04:00
|
|
|
</project>
|