cas-server-support-wsfederation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.unicon.cas</groupId> <artifactId>cas-server-support-wsfederation</artifactId> <version>1.0.0</version> </dependency>
<!-- Copyright 2014 Unicon, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <groupId>net.unicon.cas</groupId> <artifactId>cas-server-support-wsfederation</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>Jasig CAS WS-Federation Support</name> <description>Server support library for the Apereo (Jasig) CAS Server and Microsoft ADFS</description> <url>http://www.unicon.net/</url> <inceptionYear>2014</inceptionYear> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>jtgasper3</id> <name>John Gasper</name> <email>jgasper@unicon.net</email> <timezone>-8</timezone> <roles> <role>developer</role> <role>maintainer</role> </roles> </developer> </developers> <contributors> <contributor> <name>Aleksei Lissitsin</name> <url>https://github.com/jimmytheneutrino</url> <roles> <role>tester</role> </roles> </contributor> </contributors> <issueManagement> <system>GitHub</system> <url>https://github.com/Unicon/cas-adfs-integration/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:Unicon/cas-adfs-integration.git</connection> <developerConnection>scm:git:git@github.com:Unicon/cas-adfs-integration.git</developerConnection> <url>https://github.com/Unicon/cas-adfs-integration</url> <tag>HEAD</tag> </scm> <repositories> <repository> <id>sonatype-releases</id> <url>http://oss.sonatype.org/content/repositories/releases/</url> </repository> <repository> <id>sonatype-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.jasig.cas</groupId> <artifactId>cas-server-core</artifactId> <version>${cas.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.opensaml</groupId> <artifactId>opensaml</artifactId> <version>${opensaml.version}</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> <version>${servlet.api.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.4.01</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <configuration> <header>src/licensing/header.txt</header> <headerDefinitions> <headerDefinition>src/licensing/header-definitions.xml</headerDefinition> </headerDefinitions> <aggregate>true</aggregate> <excludes> <exclude>LICENSE</exclude> <exclude>**/INSTALL*</exclude> <exclude>**/NOTICE*</exclude> <exclude>**/README*</exclude> <exclude>**/readme*</exclude> <exclude>**/*.log</exclude> <exclude>**/*.license</exclude> <exclude>**/*.txt</exclude> <exclude>**/*.crt</exclude> <exclude>**/*.crl</exclude> <exclude>**/*.key</exclude> <exclude>**/.gitignore</exclude> <exclude>**/.eclipse/**</exclude> <exclude>**/.idea/**</exclude> <exclude>**/overlays/**</exclude> <exclude>src/licensing/**</exclude> <exclude>**/testCA/**</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.10</version> <configuration> <consoleOutput>true</consoleOutput> <configLocation>https://raw2.github.com/Jasig/cas/master/checkstyle-rules.xml</configLocation> <suppressionsLocation>https://raw2.github.com/Jasig/cas/master/checkstyle-suppressions.xml</suppressionsLocation> <failsOnError>true</failsOnError> </configuration> <executions> <execution> <id>checkstyle</id> <goals> <goal>checkstyle</goal> </goals> <phase>compile</phase> </execution> </executions> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>5.6</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.4</version> <configuration> <forkMode>once</forkMode> <includes> <include>**/*Tests.java</include> </includes> <excludes> <exclude>**/Abstract*.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </reporting> <properties> <cas.version>3.5.2</cas.version> <jdk.version>1.6</jdk.version> <junit.version>4.10</junit.version> <log4j.version>1.2.15</log4j.version> <opensaml.version>2.6.1</opensaml.version> <spring.version>3.1.1.RELEASE</spring.version> <!--<joda-time.version>2.1</joda-time.version>--> <servlet.api.version>2.5</servlet.api.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> </project>