You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
<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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>org.acegisecurity</groupId> |
|
<artifactId>acegi-security-parent</artifactId> |
|
<version>1.0.7</version> |
|
</parent> |
|
<artifactId>acegi-security-tiger</artifactId> |
|
<name>Acegi Security System for Spring - Java 5 (Tiger)</name> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.acegisecurity</groupId> |
|
<artifactId>acegi-security</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-aop</artifactId> |
|
<version>${spring.version}</version> |
|
</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> |
|
<reporting> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-pmd-plugin</artifactId> |
|
<configuration> |
|
<targetJdk>1.5</targetJdk> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</reporting> |
|
</project>
|
|
|