diff options
| author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2020-04-06 10:23:53 +0200 | 
|---|---|---|
| committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2020-04-06 10:23:53 +0200 | 
| commit | a056118bbfabb53dc2856ff07d068cd57ddc8be3 (patch) | |
| tree | e8972ade3b0137e8a61e10d9717a512787c16ba5 /repository | |
| parent | 7fa91731a8b852e9a8a4ea1a152a5aa74523d47e (diff) | |
| parent | aebaed0e889413491b5769babf39a200bd312992 (diff) | |
| download | moa-id-spss-a056118bbfabb53dc2856ff07d068cd57ddc8be3.tar.gz moa-id-spss-a056118bbfabb53dc2856ff07d068cd57ddc8be3.tar.bz2 moa-id-spss-a056118bbfabb53dc2856ff07d068cd57ddc8be3.zip | |
Merge branch 'development_preview'
Diffstat (limited to 'repository')
10 files changed, 1473 insertions, 0 deletions
| diff --git a/repository/eu/eidas/eidas-commons/1.4.3/eidas-commons-1.4.3.pom b/repository/eu/eidas/eidas-commons/1.4.3/eidas-commons-1.4.3.pom new file mode 100644 index 000000000..13929f1b6 --- /dev/null +++ b/repository/eu/eidas/eidas-commons/1.4.3/eidas-commons-1.4.3.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>1.4.3</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>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> diff --git a/repository/eu/eidas/eidas-configmodule/1.4.3/eidas-configmodule-1.4.3.pom b/repository/eu/eidas/eidas-configmodule/1.4.3/eidas-configmodule-1.4.3.pom new file mode 100644 index 000000000..f8591799f --- /dev/null +++ b/repository/eu/eidas/eidas-configmodule/1.4.3/eidas-configmodule-1.4.3.pom @@ -0,0 +1,75 @@ +<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-configmodule</artifactId> +    <packaging>jar</packaging> +    <name>eIDAS Configuration Module</name> +    <description> +        Handling of Eidas configuration +    </description> +    <parent> +        <groupId>eu.eidas</groupId> +        <artifactId>eidas-parent</artifactId> +        <version>1.4.3</version> +        <relativePath>../EIDAS-Parent/pom.xml</relativePath> +    </parent> +    <dependencies> +        <!-- 1) Dependencies on other modules: --> +        <dependency> +            <groupId>eu.eidas</groupId> +            <artifactId>eidas-commons</artifactId> +        </dependency> + +        <!-- 2) Dependencies on libraries: --> +        <dependency> +            <groupId>commons-lang</groupId> +            <artifactId>commons-lang</artifactId> +        </dependency> +        <dependency> +            <groupId>org.springframework</groupId> +            <artifactId>spring-beans</artifactId> +        </dependency> +        <dependency> +            <groupId>org.springframework</groupId> +            <artifactId>spring-context</artifactId> +        </dependency> +        <dependency> +            <groupId>org.springframework</groupId> +            <artifactId>spring-context-support</artifactId> +        </dependency> + +        <!-- UNIT TEST Dependencies --> +        <dependency> +            <groupId>org.springframework</groupId> +            <artifactId>spring-test</artifactId> +        </dependency> +        <dependency> +            <groupId>xerces</groupId> +            <artifactId>xercesImpl</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>xml-apis</groupId> +            <artifactId>xml-apis</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>jcl-over-slf4j</artifactId> +            <scope>test</scope> +        </dependency> +    </dependencies> +    <profiles> +        <profile> +            <id>metrics</id> +            <build> +                <plugins> +                    <plugin> +                        <groupId>org.codehaus.mojo</groupId> +                        <artifactId>cobertura-maven-plugin</artifactId> +                    </plugin> +                </plugins> +            </build> +        </profile> +    </profiles> +</project> diff --git a/repository/eu/eidas/eidas-encryption/1.4.3/eidas-encryption-1.4.3.pom b/repository/eu/eidas/eidas-encryption/1.4.3/eidas-encryption-1.4.3.pom new file mode 100644 index 000000000..ad6429481 --- /dev/null +++ b/repository/eu/eidas/eidas-encryption/1.4.3/eidas-encryption-1.4.3.pom @@ -0,0 +1,103 @@ +<?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/xsd/maven-4.0.0.xsd"> +    <modelVersion>4.0.0</modelVersion> +    <artifactId>eidas-encryption</artifactId> +    <packaging>jar</packaging> +    <name>eIDAS Encryption</name> +    <description> +        Encryption for EIDASSAMLEngine +    </description> +    <parent> +        <groupId>eu.eidas</groupId> +        <artifactId>eidas-parent</artifactId> +        <version>1.4.3</version> +        <relativePath>../EIDAS-Parent/pom.xml</relativePath> +    </parent> +    <repositories> +        <repository> +            <id>shib-release</id> +            <url> +                https://apps.egiz.gv.at/shibboleth_nexus/ +            </url> +            <snapshots> +                <enabled>false</enabled> +            </snapshots> +        </repository> +    </repositories> + +    <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.opensaml</groupId> +            <artifactId>opensaml</artifactId> +        </dependency> +        <dependency> +            <groupId>org.apache.santuario</groupId> +            <artifactId>xmlsec</artifactId> +        </dependency> +        <dependency> +            <groupId>commons-codec</groupId> +            <artifactId>commons-codec</artifactId> +            <scope>runtime</scope> +        </dependency> +        <dependency> +            <groupId>commons-collections</groupId> +            <artifactId>commons-collections</artifactId> +            <scope>runtime</scope> +        </dependency> +        <dependency> +            <groupId>commons-httpclient</groupId> +            <artifactId>commons-httpclient</artifactId> +            <scope>runtime</scope> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>slf4j-api</artifactId> +        </dependency> +        <!-- UNIT TEST Dependencies --> +        <dependency> +            <groupId>commons-io</groupId> +            <artifactId>commons-io</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>ch.qos.logback</groupId> +            <artifactId>logback-classic</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>xerces</groupId> +            <artifactId>xercesImpl</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>xml-apis</groupId> +            <artifactId>xml-apis</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>org.bouncycastle</groupId> +            <artifactId>bcprov-jdk15on</artifactId> +            <scope>test</scope> +        </dependency> + +        <dependency> +            <groupId>eu.eidas</groupId> +            <artifactId>eidas-commons</artifactId> +        </dependency> +        <dependency> +            <groupId>xerces</groupId> +            <artifactId>xercesImpl</artifactId> +        </dependency> +    </dependencies> + +</project>
\ No newline at end of file diff --git a/repository/eu/eidas/eidas-light-commons/1.4.3/eidas-light-commons-1.4.3.pom b/repository/eu/eidas/eidas-light-commons/1.4.3/eidas-light-commons-1.4.3.pom new file mode 100644 index 000000000..0483b877c --- /dev/null +++ b/repository/eu/eidas/eidas-light-commons/1.4.3/eidas-light-commons-1.4.3.pom @@ -0,0 +1,55 @@ +<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-light-commons</artifactId> +    <packaging>${mod.packaging.type}</packaging> +    <name>eIDAS Light Commons</name> +    <description> +        The EIDASLightCommons library provides Java Interfaces and utility classes to integrate EIDASCommons and eIDAS Specific Communication Definition. +    </description> +    <parent> +        <groupId>eu.eidas</groupId> +        <artifactId>eidas-parent</artifactId> +        <version>1.4.3</version> +        <relativePath>../EIDAS-Parent/pom.xml</relativePath> +    </parent> +    <dependencies> +        <dependency> +            <groupId>joda-time</groupId> +            <artifactId>joda-time</artifactId> +        </dependency> +        <dependency> +            <groupId>com.ibm.icu</groupId> +            <artifactId>icu4j</artifactId> +        </dependency> +    </dependencies> +    <build> +        <plugins> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-source-plugin</artifactId> +            </plugin> +        </plugins> +    </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> diff --git a/repository/eu/eidas/eidas-parent/1.4.3/eidas-parent-1.4.3.pom b/repository/eu/eidas/eidas-parent/1.4.3/eidas-parent-1.4.3.pom new file mode 100644 index 000000000..719fb9ba6 --- /dev/null +++ b/repository/eu/eidas/eidas-parent/1.4.3/eidas-parent-1.4.3.pom @@ -0,0 +1,862 @@ +<?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>eu.eidas</groupId> +    <artifactId>eidas-parent</artifactId> +    <packaging>pom</packaging> +    <name>eIDAS Node Parent</name> +    <version>1.4.3</version> +    <description> +        The EIDAS-Parent provides artifacts versions for Eidas Node components. +    </description> +    <properties> +        <!-- 1) Project properties --> +        <proj.name>EIDASParent</proj.name> +        <proj.name.eidas>EidasNode</proj.name.eidas> +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> +        <app.packaging.type>war</app.packaging.type> +        <mod.packaging.type>jar</mod.packaging.type> +        <timestamp>${maven.build.timestamp}</timestamp> +        <!-- java version targeted in the compile phase --> +        <java.version>1.7</java.version> + +        <samlspec.version>0.5.2</samlspec.version> +        <samlspecacept.version>0.5.1</samlspecacept.version> + +		<!-- eID4U extension for eIDAS ref. implementation --> +		<eID4U.module.version>0.2</eID4U.module.version> + + +        <!-- 2) Library dependency versions --> +        <spring.version>4.1.0.RELEASE</spring.version> +        <opensaml.not-yet-commons-ssl.version>0.3.9</opensaml.not-yet-commons-ssl.version> +        <opensaml.xmltooling.version>1.4.5</opensaml.xmltooling.version> +        <opensaml.openws.version>1.5.5</opensaml.openws.version> +        <opensaml.version>2.6.5-eidas_1</opensaml.version> +        <servlet.version>2.5</servlet.version> +        <jsp.api>2.0</jsp.api> +        <jstl.version>1.1.2</jstl.version> +        <apache.taglibs>1.2.5</apache.taglibs> +        <jersey.version>1.18</jersey.version> +        <slf4j.version>1.7.10</slf4j.version> +        <logback.version>1.1.2</logback.version> +        <mockito.version>1.10.19</mockito.version> +        <junit.version>4.12</junit.version> +        <hamcrest.version>1.3</hamcrest.version> +        <commons.codec>1.9</commons.codec> +        <commons.collections>3.2.2</commons.collections> +        <commons.io>2.4</commons.io> +        <commons.lang>2.6</commons.lang> +        <commons.logging>1.1.3</commons.logging> +        <commons.httpclient>3.1</commons.httpclient> +        <commons.lang3>3.1</commons.lang3> +        <hazelcast.version>3.2</hazelcast.version> +        <bouncycastle.version>1.52</bouncycastle.version> +        <owasp.version>1.1.1</owasp.version> +        <owasp.dependency-check.version>1.4.0</owasp.dependency-check.version> +        <owasp.esapi.version>2.1.0</owasp.esapi.version> +        <cglib.version>2.2.2</cglib.version> +        <xmlapis.version>1.4.01</xmlapis.version> +        <xerces.version>2.11.0</xerces.version> +        <xalan.version>2.7.2</xalan.version> +        <joda.time.version>2.6</joda.time.version> +        <log4j.version>1.2.17</log4j.version> +        <log4j.api>2.3</log4j.api> +        <xmlunit.version>1.5</xmlunit.version> +        <bdr.econnector.version>1.2.2</bdr.econnector.version> +        <struts.version>2.3.32</struts.version> +        <icu4j.version>55.1</icu4j.version> +        <vaadin.version>7.4.2</vaadin.version> +        <vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version> +        <vaadin-spring.version>1.0.0.beta1</vaadin-spring.version> +        <vaadin4spring.version>0.0.5.RELEASE</vaadin4spring.version> +        <jetty.plugin.version>9.2.3.v20140905</jetty.plugin.version> +        <xmlsec.version>2.0.5</xmlsec.version> +        <guava.version>19.0</guava.version> +        <jsr305.version>3.0.1</jsr305.version> +        <icu4j.version>57.1</icu4j.version> + +        <!-- 3) maven plugin versions --> +        <javadoc.plugin.version>2.8.1</javadoc.plugin.version> +        <compile.plugin.version>2.3.2</compile.plugin.version> +        <surefire.plugin.version>2.19.1</surefire.plugin.version> +        <war.plugin.version>2.0.2</war.plugin.version> +        <ear.plugin.version>2.7</ear.plugin.version> +        <resources.plugin.version>2.4</resources.plugin.version> +        <cobertura.plugin.version>2.7</cobertura.plugin.version> +        <remote.resources.plugin.version>1.5</remote.resources.plugin.version> +        <source.plugin.version>2.1.2</source.plugin.version> +        <install.plugin.version>2.5.2</install.plugin.version> +        <clean.plugin.version>2.6.1</clean.plugin.version> +    </properties> + +    <dependencyManagement> +        <dependencies> +            <!-- eIDAS modules --> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-commons</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-light-commons</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-configmodule</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-encryption</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-saml-engine</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-updater</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-specific</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-specific-communication-definition</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-node</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-sp</artifactId> +                <version>${project.version}</version> +            </dependency> +            <dependency> +                <groupId>eu.eidas</groupId> +                <artifactId>eidas-idp</artifactId> +                <version>${project.version}</version> +            </dependency> +             +            <!-- eID4U extensions --> +            <dependency> +              	<groupId>eu.eidas.extension.eID4U</groupId> +  				<artifactId>eID4U_commons</artifactId> +  				<version>${eID4U.module.version}</version> +            </dependency> +             +            <!-- Joda --> +            <dependency> +                <groupId>joda-time</groupId> +                <artifactId>joda-time</artifactId> +                <version>${joda.time.version}</version> +            </dependency> +            <!-- SLF4J logging --> +            <dependency> +                <groupId>org.slf4j</groupId> +                <artifactId>slf4j-api</artifactId> +                <version>${slf4j.version}</version> +            </dependency> +            <dependency> +                <groupId>org.slf4j</groupId> +                <artifactId>jcl-over-slf4j</artifactId> +                <version>${slf4j.version}</version> +            </dependency> +            <dependency> +                <groupId>org.slf4j</groupId> +                <artifactId>log4j-over-slf4j</artifactId> +                <version>${slf4j.version}</version> +            </dependency> +            <dependency> +                <groupId>org.slf4j</groupId> +                <artifactId>jul-to-slf4j</artifactId> +                <version>${slf4j.version}</version> +            </dependency> +            <dependency> +                <groupId>org.slf4j</groupId> +                <artifactId>slf4j-simple</artifactId> +                <version>${slf4j.version}</version> +            </dependency> +            <dependency> +                <groupId>org.slf4j</groupId> +                <artifactId>slf4j-log4j12</artifactId> +                <version>${slf4j.version}</version> +            </dependency> +            <!-- commons-logging --> +            <dependency> +                <groupId>commons-logging</groupId> +                <artifactId>commons-logging</artifactId> +                <version>${commons.logging}</version> +            </dependency> +            <!-- Log4J --> +            <dependency> +                <groupId>log4j</groupId> +                <artifactId>log4j</artifactId> +                <version>${log4j.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>javax.jms</groupId> +                        <artifactId>jms</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>com.sun.jdmk</groupId> +                        <artifactId>jmxtools</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>com.sun.jmx</groupId> +                        <artifactId>jmxri</artifactId> +                    </exclusion> +                    <exclusion> +                        <artifactId>mail</artifactId> +                        <groupId>javax.mail</groupId> +                    </exclusion> +                </exclusions> +            </dependency> +            <!-- LogBack --> +            <dependency> +                <groupId>ch.qos.logback</groupId> +                <artifactId>logback-classic</artifactId> +                <version>${logback.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>org.slf4j</groupId> +                        <artifactId>slf4j-api</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <!-- Bouncy Castle --> +            <dependency> +                <groupId>org.bouncycastle</groupId> +                <artifactId>bcprov-jdk15on</artifactId> +                <version>${bouncycastle.version}</version> +                <!-- JBoss issue: please keep provided as the default scope for all the components of the project and override it if needed --> +                <scope>provided</scope> +            </dependency> +            <!-- Apache Commons --> +            <dependency> +                <groupId>commons-codec</groupId> +                <artifactId>commons-codec</artifactId> +                <version>${commons.codec}</version> +            </dependency> +            <dependency> +                <groupId>commons-collections</groupId> +                <artifactId>commons-collections</artifactId> +                <version>${commons.collections}</version> +            </dependency> +            <dependency> +                <groupId>commons-httpclient</groupId> +                <artifactId>commons-httpclient</artifactId> +                <version>${commons.httpclient}</version> +                <exclusions> +                    <exclusion> +                        <groupId>commons-logging</groupId> +                        <artifactId>commons-logging</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>commons-codec</groupId> +                        <artifactId>commons-codec</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <dependency> +                <groupId>commons-io</groupId> +                <artifactId>commons-io</artifactId> +                <version>${commons.io}</version> +            </dependency> +            <dependency> +                <groupId>commons-lang</groupId> +                <artifactId>commons-lang</artifactId> +                <version>${commons.lang}</version> +            </dependency> +            <dependency> +                <groupId>org.owasp.encoder</groupId> +                <artifactId>encoder</artifactId> +                <version>${owasp.version}</version> +            </dependency> +            <dependency> +                <groupId>org.owasp.encoder</groupId> +                <artifactId>encoder-jsp</artifactId> +                <version>${owasp.version}</version> +            </dependency> +            <dependency> +                <groupId>org.owasp.esapi</groupId> +                <artifactId>esapi</artifactId> +                <version>${owasp.esapi.version}</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>com.google.guava</groupId> +                <artifactId>guava</artifactId> +                <version>${guava.version}</version> +            </dependency> +            <dependency> +                <groupId>com.google.code.findbugs</groupId> +                <artifactId>jsr305</artifactId> +                <version>${jsr305.version}</version> +                <scope>provided</scope> +            </dependency> +            <dependency> +                <groupId>org.opensaml</groupId> +                <artifactId>opensaml</artifactId> +                <version>${opensaml.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>commons-codec</groupId> +                        <artifactId>commons-codec</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>commons-collections</groupId> +                        <artifactId>commons-collections</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>commons-httpclient</groupId> +                        <artifactId>commons-httpclient</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>commons-lang</groupId> +                        <artifactId>commons-lang</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>commons-logging</groupId> +                        <artifactId>commons-logging</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>javax.servlet</groupId> +                        <artifactId>servlet-api</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>joda-time</groupId> +                        <artifactId>joda-time</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>junit</groupId> +                        <artifactId>junit</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>log4j</groupId> +                        <artifactId>log4j</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.apache.santuario</groupId> +                        <artifactId>xmlsec</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.apache.velocity</groupId> +                        <artifactId>velocity</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.bouncycastle</groupId> +                        <artifactId>bcprov-jdk15on</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.owasp.esapi</groupId> +                        <artifactId>esapi</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.slf4j</groupId> +                        <artifactId>slf4j-api</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> +                    <exclusion> +                        <groupId>org.springframework</groupId> +                        <artifactId>spring-test</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <!-- Servlet API --> +            <dependency> +                <groupId>javax.servlet</groupId> +                <artifactId>servlet-api</artifactId> +                <version>${servlet.version}</version> +                <scope>provided</scope> +            </dependency> +            <!-- JSP --> +            <dependency> +                <groupId>javax.servlet</groupId> +                <artifactId>jsp-api</artifactId> +                <version>${jsp.api}</version> +                <scope>provided</scope> +            </dependency> +            <!-- JSTL --> +            <dependency> +                <groupId>javax.servlet</groupId> +                <artifactId>jstl</artifactId> +                <version>${jstl.version}</version> +            </dependency> +            <dependency> +                <groupId>org.apache.taglibs</groupId> +                <artifactId>taglibs-standard-impl</artifactId> +                <version>${apache.taglibs}</version> +            </dependency> +            <dependency> +                <groupId>taglibs</groupId> +                <artifactId>standard</artifactId> +                <version>${jstl.version}</version> +            </dependency> +            <!-- JavaEE API --> +            <dependency> +                <groupId>javax</groupId> +                <artifactId>javaee-api</artifactId> +                <version>7.0</version> +                <scope>provided</scope> +            </dependency> +            <!-- Spring --> +            <dependency> +                <groupId>org.springframework</groupId> +                <artifactId>spring-core</artifactId> +                <version>${spring.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>commons-logging</groupId> +                        <artifactId>commons-logging</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> +            </dependency> +            <dependency> +                <groupId>org.springframework</groupId> +                <artifactId>spring-context-support</artifactId> +                <version>${spring.version}</version> +            </dependency> +            <dependency> +                <groupId>org.springframework</groupId> +                <artifactId>spring-web</artifactId> +                <version>${spring.version}</version> +            </dependency> +            <dependency> +                <groupId>org.springframework</groupId> +                <artifactId>spring-aop</artifactId> +                <version>${spring.version}</version> +            </dependency> +            <dependency> +                <groupId>xerces</groupId> +                <artifactId>xercesImpl</artifactId> +                <version>${xerces.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>xml-apis</groupId> +                        <artifactId>xml-apis</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <dependency> +                <groupId>xalan</groupId> +                <artifactId>xalan</artifactId> +                <version>${xalan.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>xml-apis</groupId> +                        <artifactId>xml-apis</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <dependency> +                <groupId>xalan</groupId> +                <artifactId>serializer</artifactId> +                <version>${xalan.version}</version> +                <exclusions> +                    <exclusion><!-- upsets jboss 6 --> +                        <groupId>xml-apis</groupId> +                        <artifactId>xml-apis</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <dependency> +                <groupId>xml-apis</groupId> +                <artifactId>xml-apis</artifactId> +                <version>${xmlapis.version}</version> +            </dependency> +            <dependency> +                <groupId>org.apache.santuario</groupId> +                <artifactId>xmlsec</artifactId> +                <version>${xmlsec.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>org.slf4j</groupId> +                        <artifactId>slf4j-api</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>commons-codec</groupId> +                        <artifactId>commons-codec</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <!-- Jersey --> +            <dependency> +                <groupId>com.sun.jersey</groupId> +                <artifactId>jersey-server</artifactId> +                <version>${jersey.version}</version> +            </dependency> +            <!-- Jersey + Spring --> +            <dependency> +                <groupId>com.sun.jersey.contribs</groupId> +                <artifactId>jersey-spring</artifactId> +                <version>${jersey.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>org.springframework</groupId> +                        <artifactId>spring</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.springframework</groupId> +                        <artifactId>spring-core</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.springframework</groupId> +                        <artifactId>spring-web</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.springframework</groupId> +                        <artifactId>spring-beans</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.springframework</groupId> +                        <artifactId>spring-aop</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.springframework</groupId> +                        <artifactId>spring-context</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>com.sun.jersey</groupId> +                        <artifactId>jersey-server</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>org.slf4j</groupId> +                        <artifactId>slf4j-log4j12</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>log4j</groupId> +                        <artifactId>log4j</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <!-- HazelCast --> +            <dependency> +                <groupId>com.hazelcast</groupId> +                <artifactId>hazelcast</artifactId> +                <version>${hazelcast.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>org.slf4j</groupId> +                        <artifactId>slf4j-log4j12</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>log4j</groupId> +                        <artifactId>log4j</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <dependency> +                <groupId>com.hazelcast</groupId> +                <artifactId>hazelcast-wm</artifactId> +                <version>${hazelcast.version}</version> +                <exclusions> +                    <exclusion> +                        <groupId>org.slf4j</groupId> +                        <artifactId>slf4j-log4j12</artifactId> +                    </exclusion> +                    <exclusion> +                        <groupId>log4j</groupId> +                        <artifactId>log4j</artifactId> +                    </exclusion> +                </exclusions> +            </dependency> +            <!-- Struts2 --> +            <dependency> +                <groupId>org.apache.struts</groupId> +                <artifactId>struts2-core</artifactId> +                <version>${struts.version}</version> +            </dependency> +            <dependency> +                <groupId>cglib</groupId> +                <artifactId>cglib-nodep</artifactId> +                <version>${cglib.version}</version> +            </dependency> +            <dependency> +                <groupId>cglib</groupId> +                <artifactId>cglib</artifactId> +                <version>${cglib.version}</version> +            </dependency> +            <!-- ICU --> +            <dependency> +                <groupId>com.ibm.icu</groupId> +                <artifactId>icu4j</artifactId> +                <version>${icu4j.version}</version> +            </dependency> + +            <!-- UNIT TEST Dependencies --> +            <dependency> +                <groupId>junit</groupId> +                <artifactId>junit</artifactId> +                <version>${junit.version}</version> +                <scope>test</scope> +            </dependency> +            <dependency> +                <groupId>org.hamcrest</groupId> +                <artifactId>hamcrest-all</artifactId> +                <version>${hamcrest.version}</version> +                <scope>test</scope> +            </dependency> +            <dependency> +                <groupId>org.mockito</groupId> +                <artifactId>mockito-core</artifactId> +                <version>${mockito.version}</version> +                <scope>test</scope> +            </dependency> +            <dependency> +                <groupId>xmlunit</groupId> +                <artifactId>xmlunit</artifactId> +                <version>${xmlunit.version}</version> +                <scope>test</scope> +            </dependency> +            <dependency> +                <groupId>org.springframework</groupId> +                <artifactId>spring-test</artifactId> +                <version>${spring.version}</version> +                <scope>test</scope> +            </dependency> +        </dependencies> +    </dependencyManagement> + +    <dependencies> +        <!-- Dependencies in common for all modules --> +        <dependency> +            <groupId>commons-collections</groupId> +            <artifactId>commons-collections</artifactId> +        </dependency> +        <dependency> +            <groupId>commons-io</groupId> +            <artifactId>commons-io</artifactId> +        </dependency> +        <dependency> +            <groupId>commons-lang</groupId> +            <artifactId>commons-lang</artifactId> +        </dependency> +        <dependency> +            <groupId>com.google.guava</groupId> +            <artifactId>guava</artifactId> +        </dependency> +        <dependency> +            <groupId>com.google.code.findbugs</groupId> +            <artifactId>jsr305</artifactId> +        </dependency> + +        <!-- UNIT TEST Dependencies in common for all modules --> +        <dependency> +            <groupId>junit</groupId> +            <artifactId>junit</artifactId> +            <exclusions> +                <exclusion> +                    <artifactId>hamcrest-core</artifactId> +                    <groupId>org.hamcrest</groupId> +                </exclusion> +            </exclusions> +        </dependency> +        <dependency> +            <groupId>org.hamcrest</groupId> +            <artifactId>hamcrest-all</artifactId> +        </dependency> +        <dependency> +            <groupId>org.mockito</groupId> +            <artifactId>mockito-core</artifactId> +            <exclusions> +                <exclusion> +                    <artifactId>hamcrest-core</artifactId> +                    <groupId>org.hamcrest</groupId> +                </exclusion> +            </exclusions> +        </dependency> +        <dependency> +            <groupId>xmlunit</groupId> +            <artifactId>xmlunit</artifactId> +        </dependency> +    </dependencies> + +    <build> +        <pluginManagement> +            <plugins> +                <plugin> +                    <groupId>org.apache.maven.plugins</groupId> +                    <artifactId>maven-war-plugin</artifactId> +                    <version>${war.plugin.version}</version> +                    <configuration> +                        <webResources> +                            <resource> +                                <directory>${project.basedir}/src/main/webapp/WEB-INF</directory> +                                <filtering>true</filtering> +                                <targetPath>WEB-INF</targetPath> +                                <includes> +                                    <include>**/web.xml</include> +                                </includes> +                            </resource> +                        </webResources> +                    </configuration> +                </plugin> +                <plugin> +                    <groupId>org.apache.maven.plugins</groupId> +                    <artifactId>maven-source-plugin</artifactId> +                    <version>${source.plugin.version}</version> +                    <executions> +                        <execution> +                            <id>attach-sources</id> +                            <phase>verify</phase> +                            <goals> +                                <goal>jar-no-fork</goal> +                            </goals> +                        </execution> +                    </executions> +                </plugin> +                <plugin> +                    <groupId>org.codehaus.mojo</groupId> +                    <artifactId>cobertura-maven-plugin</artifactId> +                    <version>${cobertura.plugin.version}</version> +                    <configuration> +                        <formats> +                            <format>html</format> +                            <format>xml</format> +                        </formats> +                    </configuration> +                </plugin> +                <plugin> +                    <groupId>org.apache.maven.plugins</groupId> +                    <artifactId>maven-resources-plugin</artifactId> +                    <version>${resources.plugin.version}</version> +                </plugin> +                <!--plugin> +                    <groupId>org.owasp</groupId> +                    <artifactId>dependency-check-maven</artifactId> +                    <version>${owasp.dependency-check.version}</version> +                    <configuration> +                        <failBuildOnCVSS>8</failBuildOnCVSS> +                    </configuration> +                    <executions> +                        <execution> +                            <goals> +                                <goal>check</goal> +                            </goals> +                        </execution> +                    </executions> +                </plugin--> +            </plugins> +        </pluginManagement> +        <plugins> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-compiler-plugin</artifactId> +                <version>${compile.plugin.version}</version> +                <configuration> +                    <source>${java.version}</source> +                    <target>${java.version}</target> +                </configuration> +            </plugin> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-surefire-plugin</artifactId> +                <version>${surefire.plugin.version}</version> +                <configuration> +                    <skip>false</skip> +                </configuration> +            </plugin> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-javadoc-plugin</artifactId> +                <version>${javadoc.plugin.version}</version> +                <configuration> +                    <detectLinks>true</detectLinks> +                </configuration> +            </plugin> +        </plugins> +    </build> + +    <modules> +        <module>../EIDAS-Light-Commons</module> +        <module>../EIDAS-Commons</module> +        <module>../EIDAS-ConfigModule</module> +        <module>../EIDAS-Encryption</module> +        <module>../EIDAS-SAMLEngine</module> +        <module>../EIDAS-UPDATER</module> +        <module>../EIDAS-Specific</module> +        <module>../EIDAS-SpecificCommunicationDefinition</module> +        <module>../EIDAS-Node</module> +        <module>../EIDAS-SP</module> +        <module>../EIDAS-IdP-1.0</module> +    	<module>../eID4U_commons</module> +  </modules> + +    <!-- repositories> +        <repository> +            <id>EIDASprojectrepo</id> +            <name>EIDASprojectrepo</name> +            <url>file://${project.basedir}/../EIDAS-Encryption/src/main/lib</url> +        </repository> +    </repositories --> +</project>
\ No newline at end of file diff --git a/repository/eu/eidas/eidas-saml-engine/1.4.3/eidas-saml-engine-1.4.3.pom b/repository/eu/eidas/eidas-saml-engine/1.4.3/eidas-saml-engine-1.4.3.pom new file mode 100644 index 000000000..e0b034b0d --- /dev/null +++ b/repository/eu/eidas/eidas-saml-engine/1.4.3/eidas-saml-engine-1.4.3.pom @@ -0,0 +1,150 @@ +<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-saml-engine</artifactId> +    <packaging>jar</packaging> +    <name>eIDAS SAML Engine</name> +    <description> +        The EIDASSAMLEngine library provides tools to support developers working with the Security Assertion Markup +        Language (SAML). +    </description> +    <parent> +        <groupId>eu.eidas</groupId> +        <artifactId>eidas-parent</artifactId> +        <version>1.4.3</version> +        <relativePath>../EIDAS-Parent/pom.xml</relativePath> +    </parent> +    <repositories> +        <!-- repository OpenSaml --> +        <repository> +            <id>shib-release</id> +            <!--url>https://build.shibboleth.net/nexus/content/repositories/releases</url--> +            <url>https://apps.egiz.gv.at/shibboleth_nexus/</url> +            <snapshots> +                <enabled>false</enabled> +            </snapshots> +        </repository> +    </repositories> + +    <dependencies> +        <!-- 1) Dependencies on other modules: --> +        <dependency> +            <groupId>eu.eidas</groupId> +            <artifactId>eidas-commons</artifactId> +        </dependency> +        <dependency> +            <groupId>eu.eidas</groupId> +            <artifactId>eidas-encryption</artifactId> +        </dependency> +        <dependency> +            <groupId>eu.eidas</groupId> +            <artifactId>eidas-configmodule</artifactId> +        </dependency> + +		<!-- eID4U extensions --> +		<dependency> +			<groupId>eu.eidas.extension.eID4U</groupId> +  			<artifactId>eID4U_commons</artifactId> +		</dependency> + + +        <!-- 2) Dependencies on libraries: --> +        <dependency> +            <groupId>org.opensaml</groupId> +            <artifactId>opensaml</artifactId> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>slf4j-api</artifactId> +        </dependency> +        <dependency> +            <groupId>org.owasp.esapi</groupId> +            <artifactId>esapi</artifactId> +        </dependency> +        <dependency> +            <groupId>commons-codec</groupId> +            <artifactId>commons-codec</artifactId> +        </dependency> +        <dependency> +            <groupId>commons-collections</groupId> +            <artifactId>commons-collections</artifactId> +        </dependency> +        <dependency> +            <groupId>commons-httpclient</groupId> +            <artifactId>commons-httpclient</artifactId> +        </dependency> +        <dependency> +            <groupId>org.bouncycastle</groupId> +            <artifactId>bcprov-jdk15on</artifactId> +        </dependency> +        <dependency> +            <groupId>org.apache.santuario</groupId> +            <artifactId>xmlsec</artifactId> +        </dependency> + +        <!-- UNIT TEST Dependencies --> +        <dependency> +            <groupId>xerces</groupId> +            <artifactId>xercesImpl</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>xml-apis</groupId> +            <artifactId>xml-apis</artifactId> +            <scope>test</scope> +        </dependency> +        <dependency> +            <groupId>org.slf4j</groupId> +            <artifactId>slf4j-simple</artifactId> +            <scope>test</scope> +        </dependency> +    </dependencies> + +    <build> +        <plugins> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-surefire-plugin</artifactId> +                <configuration> +                    <skip>false</skip> +                    <additionalClasspathElements> +                        <additionalClasspathElement>src/main/resources</additionalClasspathElement> +                        <additionalClasspathElement>src/test/resources</additionalClasspathElement> +                    </additionalClasspathElements> +                </configuration> +            </plugin> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-source-plugin</artifactId> +            </plugin> +            <plugin> +                <groupId>org.apache.maven.plugins</groupId> +                <artifactId>maven-jar-plugin</artifactId> +                <configuration> +                    <archive> +                        <manifestEntries> +                            <SAMLEngineVersion>${project.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> +                    </plugin> +                </plugins> +            </build> +        </profile> +    </profiles> +</project>
\ No newline at end of file diff --git a/repository/eu/eidas/extension/eID4U/eID4U_commons/0.1/eID4U_commons-0.1.jar b/repository/eu/eidas/extension/eID4U/eID4U_commons/0.1/eID4U_commons-0.1.jarBinary files differ new file mode 100644 index 000000000..cb824f4a9 --- /dev/null +++ b/repository/eu/eidas/extension/eID4U/eID4U_commons/0.1/eID4U_commons-0.1.jar diff --git a/repository/eu/eidas/extension/eID4U/eID4U_commons/0.1/eID4U_commons-0.1.pom b/repository/eu/eidas/extension/eID4U/eID4U_commons/0.1/eID4U_commons-0.1.pom new file mode 100644 index 000000000..644afff0c --- /dev/null +++ b/repository/eu/eidas/extension/eID4U/eID4U_commons/0.1/eID4U_commons-0.1.pom @@ -0,0 +1,60 @@ +<?xml version="1.0"?> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +  <modelVersion>4.0.0</modelVersion> +  <groupId>eu.eidas.extension.eID4U</groupId> +  <artifactId>eID4U_commons</artifactId> +  <version>${eID4U.module.version}</version> +  <name>eID4U_commons</name> +  <url>http://maven.apache.org</url> +  <properties> +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> +     +    <eidasImpl.version>1.4.3</eidasImpl.version> +  </properties> +  <dependencies> +   +  		<dependency> +    		<groupId>eu.eidas</groupId> +    		<artifactId>eidas-commons</artifactId> +    		<version>${eidasImpl.version}</version> +		</dependency> +   +  		<dependency> +			<groupId>eu.eidas</groupId> +			<artifactId>eidas-light-commons</artifactId> +			 <version>${eidasImpl.version}</version> +		</dependency> +		 +<!-- 		<dependency>  +    		<groupId>eu.eidas</groupId> +    		<artifactId>eidas-saml-engine</artifactId> +    		<scope>compile</scope> +		</dependency>  --> +     +		<dependency> +    		<groupId>com.google.code.findbugs</groupId> +    		<artifactId>jsr305</artifactId> +    		</dependency> + +		<dependency> +    		<groupId>javax.xml.bind</groupId> +    		<artifactId>jaxb-api</artifactId> +    		<version>2.3.0</version> +		</dependency>   +   +   		<dependency> +      		<groupId>junit</groupId> +      		<artifactId>junit</artifactId> +      		<scope>test</scope> +    	</dependency> +		<dependency> +    		<groupId>org.bouncycastle</groupId> +    		<artifactId>bcprov-jdk15on</artifactId> +    		<version>1.60</version> +    		<scope>test</scope> +		</dependency> +    	 +  	</dependencies> +  		 +</project> diff --git a/repository/eu/eidas/extension/eID4U/eID4U_commons/0.2/eID4U_commons-0.2.jar b/repository/eu/eidas/extension/eID4U/eID4U_commons/0.2/eID4U_commons-0.2.jarBinary files differ new file mode 100644 index 000000000..c5d578fb5 --- /dev/null +++ b/repository/eu/eidas/extension/eID4U/eID4U_commons/0.2/eID4U_commons-0.2.jar diff --git a/repository/eu/eidas/extension/eID4U/eID4U_commons/0.2/eID4U_commons-0.2.pom b/repository/eu/eidas/extension/eID4U/eID4U_commons/0.2/eID4U_commons-0.2.pom new file mode 100644 index 000000000..6f7a12945 --- /dev/null +++ b/repository/eu/eidas/extension/eID4U/eID4U_commons/0.2/eID4U_commons-0.2.pom @@ -0,0 +1,66 @@ +<?xml version="1.0"?> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +  <modelVersion>4.0.0</modelVersion> +  <parent> +    <groupId>eu.eidas</groupId> +    <artifactId>eidas-parent</artifactId> +    <version>1.4.3</version> +    <relativePath>../EIDAS-Parent/pom.xml</relativePath> +  </parent> +  <groupId>eu.eidas.extension.eID4U</groupId> +  <artifactId>eID4U_commons</artifactId> +  <version>${eID4U.module.version}</version> +  <name>eID4U_commons</name> +  <url>http://maven.apache.org</url> +  <properties> +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> +     +    <eidasImpl.version>1.4.3</eidasImpl.version> +  </properties> +  <dependencies> +   +  		<dependency> +    		<groupId>eu.eidas</groupId> +    		<artifactId>eidas-commons</artifactId> +    		<version>${eidasImpl.version}</version> +		</dependency> +   +  		<dependency> +			<groupId>eu.eidas</groupId> +			<artifactId>eidas-light-commons</artifactId> +			 <version>${eidasImpl.version}</version> +		</dependency> +		 +<!-- 		<dependency>  +    		<groupId>eu.eidas</groupId> +    		<artifactId>eidas-saml-engine</artifactId> +    		<scope>compile</scope> +		</dependency>  --> +     +		<dependency> +    		<groupId>com.google.code.findbugs</groupId> +    		<artifactId>jsr305</artifactId> +    		</dependency> + +		<dependency> +    		<groupId>javax.xml.bind</groupId> +    		<artifactId>jaxb-api</artifactId> +    		<version>2.3.0</version> +		</dependency>   +   +   		<dependency> +      		<groupId>junit</groupId> +      		<artifactId>junit</artifactId> +      		<scope>test</scope> +    	</dependency> +		<dependency> +    		<groupId>org.bouncycastle</groupId> +    		<artifactId>bcprov-jdk15on</artifactId> +    		<version>1.60</version> +    		<scope>test</scope> +		</dependency> +    	 +  	</dependencies> +  		 +</project> | 
