aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-21 18:09:50 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-21 18:09:50 +0100
commitd8a6a3a0fa27f6ea487c9fc4006f705383780917 (patch)
tree9dcc4a29f153fcbb5313ec32b46162adcb89233f /pom.xml
parent10533a1a5a4e833f2436cd4752cabba8e6d664f3 (diff)
downloadNational_eIDAS_Gateway-d8a6a3a0fa27f6ea487c9fc4006f705383780917.tar.gz
National_eIDAS_Gateway-d8a6a3a0fa27f6ea487c9fc4006f705383780917.tar.bz2
National_eIDAS_Gateway-d8a6a3a0fa27f6ea487c9fc4006f705383780917.zip
switch to eIDAS Ref Impl. v2.5
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml87
1 files changed, 77 insertions, 10 deletions
diff --git a/pom.xml b/pom.xml
index c360f910..217b41ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,6 +24,8 @@
<org.thymeleaf-spring5.version>3.0.11.RELEASE</org.thymeleaf-spring5.version>
<cxf.version>3.4.1</cxf.version>
+ <eidas-ref.version>2.5.0</eidas-ref.version>
+
<org.apache.commons-lang3.version>3.11</org.apache.commons-lang3.version>
<org.apache.commons-text.version>1.9</org.apache.commons-text.version>
<commons-collections4.version>4.4</commons-collections4.version>
@@ -31,7 +33,7 @@
<joda-time.version>2.10.8</joda-time.version>
<org.slf4j.version>1.7.30</org.slf4j.version>
<jackson-datatype-jsr310.version>2.12.0</jackson-datatype-jsr310.version>
-
+ <!-- org.xerial.sqlite-jdbc.version>3.34.0</org.xerial.sqlite-jdbc.version -->
<!-- testing -->
<junit.version>4.13.1</junit.version>
@@ -146,6 +148,42 @@
<version>${egiz.eidas.version}</version>
</dependency>
+ <!-- eIDAS reference implemenation libs -->
+ <dependency>
+ <groupId>eu.eidas</groupId>
+ <artifactId>eidas-commons</artifactId>
+ <version>${eidas-ref.version}</version>
+ <!--scope>provided</scope -->
+ <exclusions>
+ <exclusion>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </exclusion>
+ <exclusion>
+ <artifactId>log4j-over-slf4j</artifactId>
+ <groupId>org.slf4j</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <dependency>
+ <groupId>eu.eidas</groupId>
+ <artifactId>eidas-light-commons</artifactId>
+ <version>${eidas-ref.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>eu.eidas</groupId>
+ <artifactId>eidas-specific-communication-definition</artifactId>
+ <version>${eidas-ref.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>eu.eidas</groupId>
+ <artifactId>eidas-jcache-ignite-specific-communication</artifactId>
+ <version>${eidas-ref.version}</version>
+ </dependency>
+
<!-- Third party libs -->
<dependency>
@@ -254,6 +292,14 @@
<scope>test</scope>
<type>test-jar</type>
</dependency>
+ <dependency>
+ <groupId>at.asitplus.eidas.ms_specific</groupId>
+ <artifactId>connector_lib</artifactId>
+ <version>${egiz.eidas.version}</version>
+ <scope>test</scope>
+ <type>test-jar</type>
+ </dependency>
+
</dependencies>
</dependencyManagement>
<dependencies>
@@ -269,15 +315,36 @@
<finalName>ms-specific_eidas_node</finalName>
<pluginManagement>
<plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven-compiler-plugin.version}</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>${maven-compiler-plugin.version}</version>
+ <configuration>
+ <source>1.8</source>
+ <target>1.8</target>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>compile</goal>
+ <goal>testCompile</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>3.1.0</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>