opensaml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>opensaml</artifactId>
<version>2.6.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>org.opensaml</groupId>
<artifactId>opensaml</artifactId>
<version>2.6.4</version>
<packaging>jar</packaging>
<name>OpenSAML-J</name>
<description>
The OpenSAML-J library provides tools to support developers working with the Security Assertion Markup Language
(SAML).
</description>
<properties>
<svn.relative.location>java-opensaml2</svn.relative.location>
</properties>
<dependencies>
<!-- Compile dependencies -->
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>openws</artifactId>
<version>1.5.4</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
<exclusions>
<exclusion>
<groupId>oro</groupId>
<artifactId>oro</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.owasp.esapi</groupId>
<artifactId>esapi</artifactId>
<version>2.0.1</version>
<exclusions>
<exclusion>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
</exclusion>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
</exclusion>
<exclusion>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>xom</groupId>
<artifactId>xom</artifactId>
</exclusion>
<exclusion>
<groupId>org.beanshell</groupId>
<artifactId>bsh-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.owasp.antisamy</groupId>
<artifactId>antisamy</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.apache.santuario</groupId>
<artifactId>xmlsec</artifactId>
<version>1.5.7</version>
</dependency>
<!-- Provided dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<!-- Runtime dependencies -->
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>2.5.6.SEC03</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
<version>2.5.6.SEC03</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
<version>14.0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifestEntries>
<Main-Class>org.opensaml.Version</Main-Class>
</manifestEntries>
<manifestSections>
<manifestSection>
<name>org/opensaml/</name>
<manifestEntries>
<Implementation-Title>${project.artifactId}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>www.opensaml.org</Implementation-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/saml1/</name>
<manifestEntries>
<Specification-Title>Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V1.1</Specification-Title>
<Specification-Version>1.1</Specification-Version>
<Specification-Vendor>OASIS</Specification-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/saml2/</name>
<manifestEntries>
<Specification-Title>Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0</Specification-Title>
<Specification-Version>2.0</Specification-Version>
<Specification-Vendor>OASIS</Specification-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/xacml/</name>
<manifestEntries>
<Specification-Title>eXtensible Access Control Markup Language (XACML) Version 2.0</Specification-Title>
<Specification-Version>2.0</Specification-Version>
<Specification-Vendor>OASIS</Specification-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/xacml/profile/saml/</name>
<manifestEntries>
<Specification-Title>SAML 2.0 Profile of XACML, Version 2</Specification-Title>
<Specification-Version>Working Draft 5</Specification-Version>
<Specification-Vendor>OASIS</Specification-Vendor>
</manifestEntries>
</manifestSection>
</manifestSections>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>https://build.shibboleth.net/nexus/service/local/repositories/releases/archive/org/opensaml/xmltooling/1.4.4/xmltooling-1.4.4-javadoc.jar/!/</link>
<link>https://build.shibboleth.net/nexus/service/local/repositories/releases/archive/org/opensaml/openws/1.5.4/openws-1.5.4-javadoc.jar/!/</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- Project Metadata -->
<url>http://opensaml.org/</url>
<inceptionYear>2006</inceptionYear>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Internet2</name>
<url>http://www.internet2.edu/</url>
</organization>
<issueManagement>
<system>JIRA</system>
<url>http://bugs.internet2.edu/</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>OpenSAML Users</name>
<subscribe>https://wiki.shibboleth.net/confluence/display/OpenSAML/MailingList</subscribe>
<unsubscribe>https://wiki.shibboleth.net/confluence/display/OpenSAML/MailingList</unsubscribe>
<post>dev@shibboleth.net</post>
<archive>http://groups.google.com/group/opensaml-users</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:svn:https://svn.middleware.georgetown.edu/java-opensaml2/</connection>
<developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-opensaml2/</developerConnection>
<tag>HEAD</tag>
<url>http://svn.middleware.georgetown.edu/view/?root=java-opensaml2</url>
</scm>
<developers>
<developer>
<id>cantor</id>
<name>Scott Cantor</name>
<organization>The Ohio State University</organization>
<organizationUrl>http://www.ohio-state.edu/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<id>ndk</id>
<name>Nate Klingenstein</name>
<organization>Internet2</organization>
<organizationUrl>http://www.internet2.edu/</organizationUrl>
<roles>
<role>documentation</role>
</roles>
<timezone>-7</timezone>
</developer>
<developer>
<id>lajoie</id>
<name>Chad La Joie</name>
<organization>Itumi, LLC</organization>
<organizationUrl>http://itumi.biz</organizationUrl>
<roles>
<role>developer</role>
<role>documentation</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<id>putmanb</id>
<name>Brent Putman</name>
<organization>Georgetown University</organization>
<organizationUrl>http://www.georgetown.edu/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<id>rdw</id>
<name>Rod Widdowson</name>
<organization>University of Edinburgh</organization>
<organizationUrl>http://www.ed.ac.uk/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
</project>