diff options
| author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2018-09-28 14:19:50 +0200 | 
|---|---|---|
| committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2018-09-28 14:19:50 +0200 | 
| commit | b76b6e6212784d622ca79bd258fa3e529b353346 (patch) | |
| tree | fc1a83b6775e043aaabaa88648fc20063e938948 /repository/eu/eidas/eidas-commons | |
| parent | 5a147ba2714436e5fb15ddcf3db8df6273ac4d57 (diff) | |
| download | moa-id-spss-b76b6e6212784d622ca79bd258fa3e529b353346.tar.gz moa-id-spss-b76b6e6212784d622ca79bd258fa3e529b353346.tar.bz2 moa-id-spss-b76b6e6212784d622ca79bd258fa3e529b353346.zip | |
add first code for eID4U
Diffstat (limited to 'repository/eu/eidas/eidas-commons')
| -rw-r--r-- | repository/eu/eidas/eidas-commons/1.4.3/eidas-commons-1.4.3.jar | bin | 0 -> 255257 bytes | |||
| -rw-r--r-- | repository/eu/eidas/eidas-commons/2.1.0/eidas-commons-2.1.0.jar | bin | 0 -> 270943 bytes | |||
| -rw-r--r-- | repository/eu/eidas/eidas-commons/2.1.0/eidas-commons-2.1.0.pom | 102 | 
3 files changed, 102 insertions, 0 deletions
| diff --git a/repository/eu/eidas/eidas-commons/1.4.3/eidas-commons-1.4.3.jar b/repository/eu/eidas/eidas-commons/1.4.3/eidas-commons-1.4.3.jarBinary files differ new file mode 100644 index 000000000..e5604cdc8 --- /dev/null +++ b/repository/eu/eidas/eidas-commons/1.4.3/eidas-commons-1.4.3.jar diff --git a/repository/eu/eidas/eidas-commons/2.1.0/eidas-commons-2.1.0.jar b/repository/eu/eidas/eidas-commons/2.1.0/eidas-commons-2.1.0.jarBinary files differ new file mode 100644 index 000000000..d9bb91ef7 --- /dev/null +++ b/repository/eu/eidas/eidas-commons/2.1.0/eidas-commons-2.1.0.jar diff --git a/repository/eu/eidas/eidas-commons/2.1.0/eidas-commons-2.1.0.pom b/repository/eu/eidas/eidas-commons/2.1.0/eidas-commons-2.1.0.pom new file mode 100644 index 000000000..3a50c50bd --- /dev/null +++ b/repository/eu/eidas/eidas-commons/2.1.0/eidas-commons-2.1.0.pom @@ -0,0 +1,102 @@ +<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> +    <artifactId>eidas-commons</artifactId> +    <packaging>${mod.packaging.type}</packaging> +    <name>eIDAS Commons</name> +    <description> +        The EIDASCommons library provides beans, Java Interfaces and utility classes to integrate EidasNode and SAML +        Engine. +    </description> +    <parent> +        <groupId>eu.eidas</groupId> +        <artifactId>eidas-parent</artifactId> +        <version>2.1.0</version> +        <relativePath>../EIDAS-Parent/pom.xml</relativePath> +    </parent> +    <dependencies> +        <dependency> +            <groupId>eu.eidas</groupId> +            <artifactId>eidas-light-commons</artifactId> +        </dependency> +        <dependency> +            <groupId>joda-time</groupId> +            <artifactId>joda-time</artifactId> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>slf4j-api</artifactId> +        </dependency> +        <dependency> +            <groupId>org.bouncycastle</groupId> +            <artifactId>bcprov-jdk15on</artifactId> +        </dependency> +        <!-- Bouncy Castle --> +        <dependency> +            <groupId>javax.servlet</groupId> +            <artifactId>javax.servlet-api</artifactId> +        </dependency> +        <dependency> +            <groupId>org.owasp.encoder</groupId> +            <artifactId>encoder</artifactId> +        </dependency> +        <dependency> +            <groupId>com.hazelcast</groupId> +            <artifactId>hazelcast</artifactId> +        </dependency> +        <dependency> +            <groupId>com.hazelcast</groupId> +            <artifactId>hazelcast-wm</artifactId> +        </dependency> +        <!-- TEST --> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>slf4j-log4j12</artifactId> +            <scope>test</scope> +        </dependency> +    </dependencies> + +    <build> +        <resources> +            <resource> +                <directory>${project.basedir}/src/main/resources</directory> +            </resource> +        </resources> +        <plugins> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-source-plugin</artifactId> +            </plugin> +        </plugins> +        <testResources> +            <testResource> +                <directory>src/test/resources</directory> +                <includes> +                    <include>log4j.xml</include> +                    <include>*.properties</include> +                </includes> +            </testResource> +        </testResources> +    </build> +    <profiles> +        <profile> +            <id>metrics</id> +            <build> +                <plugins> +                    <plugin> +                        <groupId>org.codehaus.mojo</groupId> +                        <artifactId>cobertura-maven-plugin</artifactId> +                    </plugin> +                </plugins> +            </build> +        </profile> +    </profiles> +    <reporting> +        <plugins> +            <plugin> +                <groupId>org.codehaus.mojo</groupId> +                <artifactId>cobertura-maven-plugin</artifactId> +            </plugin> +        </plugins> +    </reporting> +</project> | 
