2005-12-22 10:54:37 -05:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<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 16:53:08 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2005-12-04 06:20:52 -05:00
|
|
|
<groupId>org.acegisecurity</groupId>
|
2005-10-06 16:53:08 -04:00
|
|
|
<artifactId>acegi-security-parent</artifactId>
|
2006-05-30 20:52:26 -04:00
|
|
|
<version>1.1.0-SNAPSHOT</version>
|
2005-10-06 16:53:08 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>acegi-security-tiger</artifactId>
|
|
|
|
<name>Acegi Security System for Spring - Java 5 (Tiger)</name>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2005-12-04 06:20:52 -05:00
|
|
|
<groupId>org.acegisecurity</groupId>
|
2005-10-06 16:53:08 -04:00
|
|
|
<artifactId>acegi-security</artifactId>
|
2005-12-22 10:54:37 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-aop</artifactId>
|
2006-06-16 13:25:05 -04:00
|
|
|
<version>1.2.7</version>
|
2005-10-06 16:53:08 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<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>
|
2005-12-22 10:54:37 -05:00
|
|
|
</project>
|