diff options
Diffstat (limited to 'id/server/SamlEngine-VIDP/pom.xml')
-rw-r--r-- | id/server/SamlEngine-VIDP/pom.xml | 201 |
1 files changed, 0 insertions, 201 deletions
diff --git a/id/server/SamlEngine-VIDP/pom.xml b/id/server/SamlEngine-VIDP/pom.xml deleted file mode 100644 index cead61eb8..000000000 --- a/id/server/SamlEngine-VIDP/pom.xml +++ /dev/null @@ -1,201 +0,0 @@ -<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>MOA.id</groupId> - <artifactId>moa-id</artifactId> - <version>1.9.98-SNAPSHOT</version> - </parent> - <modelVersion>4.0.0</modelVersion> - <groupId>eu.stork</groupId> - <artifactId>SamlEngine</artifactId> - <packaging>jar</packaging> - <name>STORKSAMLEngine</name> - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <saml.version>1.4.0</saml.version> - <samlspec.version>0.5.2</samlspec.version> - <samlspecacept.version>0.5.1</samlspecacept.version> - <commons.version>1.4.0</commons.version> - <opensaml.version>2.6.0</opensaml.version> - <timestamp>${maven.build.timestamp}</timestamp> - </properties> - <version>${saml.version}</version> - <description> - The STORKSAMLEngine library provides tools to support developers working with the Security Assertion Markup Language (SAML). - </description> - - <repositories> - <repository> - <id>org.opensaml</id> - <url>https://build.shibboleth.net/nexus/content/repositories/releases</url> - </repository> - <!-- repository OpenSaml --> - <repository> - <id>shibboleth-release</id> - <name>Internet2 Releases</name> - <layout>default</layout> - <url>https://build.shibboleth.net/nexus/content/repositories/releases</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - </repositories> - - <dependencies> - <!-- Compile dependencies --> - <dependency> - <groupId>eu.stork</groupId> - <artifactId>Commons</artifactId> - <version>${commons.version}</version> - </dependency> - - <dependency> - <groupId>org.opensaml</groupId> - <artifactId>opensaml</artifactId> - <version>${opensaml.version}</version> - <exclusions> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-simple</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>jcl-over-slf4j</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>log4j-over-slf4j</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>jul-to-slf4j</artifactId> - </exclusion> - </exclusions> - </dependency> - - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>1.7.5</version> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-simple</artifactId> - <version>1.7.5</version> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>jcl-over-slf4j</artifactId> - <version>1.7.5</version> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>log4j-over-slf4j</artifactId> - <version>1.7.5</version> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>jul-to-slf4j</artifactId> - <version>1.7.5</version> - </dependency> - - <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - <version>2.2</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>xerces</groupId> - <artifactId>xercesImpl</artifactId> - <version>2.11.0</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.11</version> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <pluginManagement> - <plugins> - <plugin> - <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.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <executions> - <execution> - <id>attach-sources</id> - <phase>verify</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <configuration> - <archive> - <manifestEntries> - <SAMLEngineVersion>${saml.version}</SAMLEngineVersion> - <SAMLSpecVersion-accept>${samlspecacept.version}</SAMLSpecVersion-accept> - <SAMLSpecVersion-send>${samlspec.version}</SAMLSpecVersion-send> - <SAMLSpecKnownIssues>None</SAMLSpecKnownIssues> - <timestamp>${timestamp}</timestamp> - </manifestEntries> - </archive> - </configuration> - </plugin> - </plugins> - </build> - <profiles> - <profile> - <id>metrics</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <version>2.5.1</version> - <configuration> - <formats> - <format>html</format> - <format>xml</format> - </formats> - </configuration> - </plugin> - </plugins> - </build> - </profile> - </profiles> - <reporting> - </reporting> -</project> |