126 lines
4.5 KiB
XML
126 lines
4.5 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.jasig.cas</groupId>
|
|
<version>3.1.1-SNAPSHOT</version>
|
|
<artifactId>cas-client</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>JA-SIG CAS Client for Java</name>
|
|
<description>JA-SIG CAS Client for Java is the integration point for applications that want to speak with a CAS
|
|
server, either via the CAS 1.0 or CAS 2.0 protocol.
|
|
</description>
|
|
<url>http://www.ja-sig.org/products/cas/</url>
|
|
<issueManagement>
|
|
<system>JIRA</system>
|
|
<url>http://www.ja-sig.org/issues</url>
|
|
</issueManagement>
|
|
<inceptionYear>2006</inceptionYear>
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>CAS Community Discussion List</name>
|
|
<subscribe>http://tp.its.yale.edu/mailman/listinfo/cas</subscribe>
|
|
<unsubscribe>http://tp.its.yale.edu/mailman/listinfo/cas</unsubscribe>
|
|
<post>cas@tp.its.yale.edu</post>
|
|
<archive>http://tp.its.yale.edu/pipermail/cas/</archive>
|
|
<otherArchives>
|
|
<otherArchive>http://news.gmane.org/gmane.comp.java.jasig.cas.user</otherArchive>
|
|
</otherArchives>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>CAS Developers Discussion List</name>
|
|
<subscribe>http://tp.its.yale.edu/mailman/listinfo/cas-dev</subscribe>
|
|
<unsubscribe>http://tp.its.yale.edu/mailman/listinfo/cas-dev</unsubscribe>
|
|
<post>cas-dev@tp.its.yale.edu</post>
|
|
<archive>http://tp.its.yale.edu/pipermail/cas-dev/</archive>
|
|
<otherArchives>
|
|
<otherArchive>http://news.gmane.org/gmane.comp.java.jasig.cas.devel</otherArchive>
|
|
</otherArchives>
|
|
</mailingList>
|
|
</mailingLists>
|
|
<developers>
|
|
<developer>
|
|
<id>battags</id>
|
|
<name>Scott Battaglia</name>
|
|
<email>scott_battaglia@rutgers.edu</email>
|
|
<url>http://www.scottbattaglia.com</url>
|
|
<organization>Rutgers, the State University of New Jersey</organization>
|
|
<organizationUrl>http://www.rutgers.edu</organizationUrl>
|
|
<roles>
|
|
<role>Project Admin</role>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
</developers>
|
|
<licenses>
|
|
<license>
|
|
<name>JA-SIG License for Use</name>
|
|
<url>http://www.ja-sig.org/products/cas/overview/license/</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<organization>
|
|
<name>JA-SIG</name>
|
|
<url>http://www.ja-sig.org</url>
|
|
</organization>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.2-beta-1</version>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>${basedir}/assembly.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.1</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>logkit</groupId>
|
|
<artifactId>logkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>avalon-framework</groupId>
|
|
<artifactId>avalon-framework</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jasig</id>
|
|
<name>JA-SIG Maven Repository</name>
|
|
<url>http://developer.ja-sig.org/maven2/</url>
|
|
<layout>default</layout>
|
|
</repository>
|
|
</repositories>
|
|
<modules>
|
|
<module>cas-client-core</module>
|
|
</modules>
|
|
</project> |