xacml-opensaml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.xacml4j</groupId> <artifactId>xacml-opensaml</artifactId> <version>1.2.2</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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>org.xacml4j</groupId> <artifactId>xacml-opensaml</artifactId> <version>1.2.2</version> <packaging>jar</packaging> <name>XACML/OpenSAML Integration</name> <properties> <spring.version>3.2.7.RELEASE</spring.version> <license.licenseName>lgpl_v3</license.licenseName> </properties> <inceptionYear>2009</inceptionYear> <organization> <name>Xacml4J.org</name> </organization> <licenses> <license> <name>The GNU Lesser General Public License, Version 3.0</name> <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <url>https://github.com/xacml4j/xacml4j-opensaml/issues</url> <system>GitHub Issues</system> </issueManagement> <dependencies> <dependency> <groupId>org.xacml4j</groupId> <artifactId>xacml-core</artifactId> <version>1.3.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.opensaml</groupId> <artifactId>opensaml</artifactId> <version>2.5.3</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.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>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>3.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.7</version> <configuration> </configuration> <executions> <execution> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> </plugins> </build> <scm> <url>https://github.com/xacml4j/xacml4j-opensaml</url> <connection>scm:git:git@github.com:xacml4j/xacml4j-opensaml.git</connection> <developerConnection>scm:git:git@github.com:xacml4j/xacml4j-opensaml.git</developerConnection> </scm> </project>