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.
169 lines
4.5 KiB
169 lines
4.5 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> |
|
<packaging>jar</packaging> |
|
<artifactId>acegi-security</artifactId> |
|
<name>Acegi Security Core</name> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-remoting</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-jdbc</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-support</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-mock</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<!-- TODO: Upgrade to 1.2 before 2.0 release --> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-ldap</artifactId> |
|
<version>1.1.2</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.sf.ehcache</groupId> |
|
<artifactId>ehcache</artifactId> |
|
<version>1.2.4</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>cas</groupId> |
|
<artifactId>casclient</artifactId> |
|
<version>2.0.11</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-lang</groupId> |
|
<artifactId>commons-lang</artifactId> |
|
<version>2.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
<version>1.0.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-codec</groupId> |
|
<artifactId>commons-codec</artifactId> |
|
<version>1.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>oro</groupId> |
|
<artifactId>oro</artifactId> |
|
<version>2.0.8</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-collections</groupId> |
|
<artifactId>commons-collections</artifactId> |
|
<version>3.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>aspectj</groupId> |
|
<artifactId>aspectjrt</artifactId> |
|
<version>1.2</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>jsp-api</artifactId> |
|
<version>2.0</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>servlet-api</artifactId> |
|
<version>2.4</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>taglibs</groupId> |
|
<artifactId>standard</artifactId> |
|
<version>1.0.6</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>hsqldb</groupId> |
|
<artifactId>hsqldb</artifactId> |
|
<version>1.8.0.4</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.directory.server</groupId> |
|
<artifactId>apacheds-core</artifactId> |
|
<version>1.0.0</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-log4j12</artifactId> |
|
<version>1.0.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>jmock</groupId> |
|
<artifactId>jmock</artifactId> |
|
<version>1.0.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>${basedir}/../</directory> |
|
<targetPath>META-INF</targetPath> |
|
<includes> |
|
<include>notice.txt</include> |
|
</includes> |
|
<filtering>false</filtering> |
|
</resource> |
|
<resource> |
|
<directory> |
|
${basedir}/src/main/resources/org/acegisecurity/taglibs |
|
</directory> |
|
<targetPath>META-INF</targetPath> |
|
<includes> |
|
<include>*.tld</include> |
|
</includes> |
|
<filtering>false</filtering> |
|
</resource> |
|
<resource> |
|
<directory>${basedir}/src/main/resources</directory> |
|
<targetPath>/</targetPath> |
|
<includes> |
|
<include>**/*</include> |
|
</includes> |
|
<filtering>false</filtering> |
|
</resource> |
|
</resources> |
|
</build> |
|
|
|
</project>
|
|
|