208 lines
6.4 KiB
XML
208 lines
6.4 KiB
XML
<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">
|
|
<parent>
|
|
<groupId>org.jasig.parent</groupId>
|
|
<artifactId>jasig-parent</artifactId>
|
|
<version>31</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<version>3.3-SNAPSHOT</version>
|
|
<artifactId>cas-client</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Jasig CAS Client for Java</name>
|
|
<description>Jasig 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.jasig.org/cas</url>
|
|
|
|
<issueManagement>
|
|
<system>JIRA</system>
|
|
<url>https://issues.jasig.org/browse/CASC</url>
|
|
</issueManagement>
|
|
|
|
<scm>
|
|
<connection>scm:git:git@github.com:Jasig/java-cas-client.git</connection>
|
|
<developerConnection>scm:git:git@github.com:Jasig/java-cas-client.git</developerConnection>
|
|
<url>https://github.com/Jasig/java-cas-client</url>
|
|
</scm>
|
|
|
|
<inceptionYear>2006</inceptionYear>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>battags</id>
|
|
<name>Scott Battaglia</name>
|
|
<email>scott.battaglia@gmail.com</email>
|
|
<url>http://www.scottbattaglia.com</url>
|
|
<roles>
|
|
<role>Project Admin</role>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>serac</id>
|
|
<name>Marvin S. Addison</name>
|
|
<email>marvin.addison@gmail.com</email>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<organization>
|
|
<name>Jasig</name>
|
|
<url>http://www.jasig.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>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*Tests*</include>
|
|
</includes>
|
|
<useUnlimitedThreads>false</useUnlimitedThreads>
|
|
<threadCount>1</threadCount>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<configuration>
|
|
<mavenExecutorId>forked-path</mavenExecutorId>
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
</configuration>
|
|
</plugin>
|
|
<!--
|
|
<plugin>
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
<artifactId>maven-clover2-plugin</artifactId>
|
|
<version>${clover.version}</version>
|
|
<configuration>
|
|
<license><![CDATA[QQMPxuslCSrVMvOUVCdRexVKNQNAERoKVMEoQEGVcBOLqn
|
|
mi2KMtcskHum5fq2>4UXb6xR2KpyJJkUM3laUDMilMoRmc
|
|
RrQqsWMNNPqpqNoOPpRxUQnpnnnMpOpQqrwvUwQWsTqsuW
|
|
NwXMoqnmqmUUnosrspqmmmmmmUUnosrspqmmmmmmUUA1jJ
|
|
97W9kZkUUnmm]]></license>
|
|
<jdk>1.5</jdk>
|
|
<generateXml>true</generateXml>
|
|
<generateHtml>true</generateHtml>
|
|
<includes>
|
|
<include>**/*.java</include>
|
|
</includes>
|
|
<statementContexts>
|
|
<iflog>if.*\(log\.is.*\).*</iflog>
|
|
<log>^.*log\..*</log>
|
|
</statementContexts>
|
|
<methodContexts>
|
|
<toString>public String toString\(\).*</toString>
|
|
</methodContexts>
|
|
<contextFilters>log,iflog,toString,property</contextFilters>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>instrument</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
-->
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</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>
|
|
|
|
<modules>
|
|
<module>cas-client-core</module>
|
|
<module>cas-client-integration-atlassian</module>
|
|
<module>cas-client-integration-jboss</module>
|
|
<module>cas-client-support-distributed-ehcache</module>
|
|
<module>cas-client-support-distributed-memcached</module>
|
|
<module>cas-client-integration-tomcat-common</module>
|
|
<module>cas-client-integration-tomcat-v6</module>
|
|
<module>cas-client-integration-tomcat-v7</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<ehcache.version>2.2.0</ehcache.version>
|
|
<clover.version>3.0.2</clover.version>
|
|
</properties>
|
|
</project>
|