2006-06-22 17:27:29 +00:00
|
|
|
<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">
|
2005-10-06 20:53:08 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2007-09-21 18:29:12 +00:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-parent</artifactId>
|
2008-01-02 22:42:21 +00:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2005-10-06 20:53:08 +00:00
|
|
|
</parent>
|
2007-09-21 18:29:12 +00:00
|
|
|
<artifactId>spring-security-core-tiger</artifactId>
|
2007-09-22 21:44:39 +00:00
|
|
|
<name>Spring Security - Java 5 (Tiger)</name>
|
2006-09-17 21:06:22 +00:00
|
|
|
|
2005-10-06 20:53:08 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2007-09-21 18:29:12 +00:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
2005-12-22 15:54:37 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2007-12-04 14:14:17 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
</dependency>
|
2005-12-22 15:54:37 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-aop</artifactId>
|
2007-09-05 23:39:19 +00:00
|
|
|
<version>${spring.version}</version>
|
2005-10-06 20:53:08 +00:00
|
|
|
</dependency>
|
2007-12-04 14:14:17 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-support</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2008-01-10 20:19:15 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
<artifactId>annotations-api</artifactId>
|
|
|
|
<version>6.0.14</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2005-10-06 20:53:08 +00:00
|
|
|
</dependencies>
|
2006-09-17 21:06:22 +00:00
|
|
|
|
2005-10-06 20:53:08 +00: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>
|
2006-06-22 16:55:22 +00:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<targetJdk>1.5</targetJdk>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
2007-05-13 12:30:53 +00:00
|
|
|
</project>
|