From d8a6a3a0fa27f6ea487c9fc4006f705383780917 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Mon, 21 Dec 2020 18:09:50 +0100 Subject: switch to eIDAS Ref Impl. v2.5 --- pom.xml | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 77 insertions(+), 10 deletions(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index c360f910..217b41ec 100644 --- a/pom.xml +++ b/pom.xml @@ -24,6 +24,8 @@ 3.0.11.RELEASE 3.4.1 + 2.5.0 + 3.11 1.9 4.4 @@ -31,7 +33,7 @@ 2.10.8 1.7.30 2.12.0 - + 4.13.1 @@ -146,6 +148,42 @@ ${egiz.eidas.version} + + + eu.eidas + eidas-commons + ${eidas-ref.version} + + + + log4j + log4j + + + log4j-over-slf4j + org.slf4j + + + + + + eu.eidas + eidas-light-commons + ${eidas-ref.version} + + + + eu.eidas + eidas-specific-communication-definition + ${eidas-ref.version} + + + + eu.eidas + eidas-jcache-ignite-specific-communication + ${eidas-ref.version} + + @@ -254,6 +292,14 @@ test test-jar + + at.asitplus.eidas.ms_specific + connector_lib + ${egiz.eidas.version} + test + test-jar + + @@ -269,15 +315,36 @@ ms-specific_eidas_node - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - 1.8 - 1.8 - - + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + 1.8 + 1.8 + + + + + compile + testCompile + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + + test-jar + + + + + org.apache.cxf cxf-codegen-plugin -- cgit v1.2.3 From 6b098e7070dedb5692325f6d330a20de696b9edc Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Tue, 22 Dec 2020 15:36:42 +0100 Subject: switch from Spring to Spring-Boot --- pom.xml | 110 ++++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 76 insertions(+), 34 deletions(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index 217b41ec..739cbcbe 100644 --- a/pom.xml +++ b/pom.xml @@ -19,8 +19,11 @@ 0.3 0.4 - 1.1.10 - 5.2.12.RELEASE + 1.1.11-SNAPSHOT + + 2.4.1 + 2.3.1 + 5.3.2 3.0.11.RELEASE 3.4.1 @@ -35,6 +38,9 @@ 2.12.0 + 2.0.1.Final + 6.1.5.Final + 4.13.1 2.22.2 @@ -121,6 +127,11 @@ eaaf-core ${eaaf-core.version} + + at.gv.egiz.eaaf + eaaf-springboot-utils + ${eaaf-core.version} + at.gv.egiz.eaaf eaaf_module_pvp2_idp @@ -186,6 +197,27 @@ + + org.springframework.boot + spring-boot-starter-web + ${spring-boot-starter-web.version} + + + org.springframework.boot + spring-boot-starter-actuator + ${spring-boot-starter-web.version} + + + org.springframework.boot + spring-boot-starter-tomcat + ${spring-boot-starter-web.version} + + + de.codecentric + spring-boot-admin-starter-client + ${spring-boot-admin-starter-client.version} + + org.springframework spring-webmvc @@ -257,6 +289,16 @@ jackson-datatype-jsr310 ${jackson-datatype-jsr310.version} + + javax.validation + validation-api + ${javax.validation-api.version} + + + org.hibernate.validator + hibernate-validator + ${hibernate-validator.version} + @@ -298,8 +340,8 @@ ${egiz.eidas.version} test test-jar - - + + @@ -315,36 +357,36 @@ ms-specific_eidas_node - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - 1.8 - 1.8 - - - - - compile - testCompile - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 - - - - test-jar - - - - - + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + 1.8 + 1.8 + + + + + compile + testCompile + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + + test-jar + + + + + org.apache.cxf cxf-codegen-plugin -- cgit v1.2.3 From f06839fb716ff61bf94a32f8e23e3f313245f7e7 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Sat, 26 Dec 2020 17:45:38 +0100 Subject: add jUnit test that simulates a full eIDAS authentication --- pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index 739cbcbe..a4ef7028 100644 --- a/pom.xml +++ b/pom.xml @@ -314,6 +314,12 @@ ${org.springframework.version} test + + org.springframework.boot + spring-boot-starter-test + ${spring-boot-starter-web.version} + test + com.github.skjolber mockito-soap-cxf @@ -334,6 +340,12 @@ test test-jar + + at.gv.egiz.eaaf + eaaf_module_pvp2_sp + ${eaaf-core.version} + test + at.asitplus.eidas.ms_specific connector_lib -- cgit v1.2.3 From 278c8a6d1f0518dc9d0875dbec84614b19800d5d Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Thu, 7 Jan 2021 20:03:54 +0100 Subject: switch from custom monitoring to Spring-Actuator healthchecks --- pom.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index a4ef7028..c8b9ae71 100644 --- a/pom.xml +++ b/pom.xml @@ -45,6 +45,7 @@ 4.13.1 2.22.2 1.0.5 + 4.0.0 0.8.6 @@ -353,7 +354,12 @@ test test-jar - + + com.squareup.okhttp3 + mockwebserver + ${com.squareup.okhttp3.version} + test + -- cgit v1.2.3 From 87cf2f74e2dc2dbc50333dc759fd6a206966c035 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 8 Jan 2021 11:33:28 +0100 Subject: add some jUnit test for SZR communication --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index c8b9ae71..d5e5d8df 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ 0.3 0.4 - 1.1.11-SNAPSHOT + 1.1.11 2.4.1 2.3.1 -- cgit v1.2.3 From a5d2e6d6fa2c75ae8211c818537524e8c54c3129 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Mon, 11 Jan 2021 15:15:03 +0100 Subject: fix some minor incompatibilities between AuthHandler and MS-Connector in E-ID mode --- pom.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index d5e5d8df..46d02706 100644 --- a/pom.xml +++ b/pom.xml @@ -10,9 +10,12 @@ MS specific eIDAS components - + UTF-8 + ${maven.build.timestamp} + yyyy-MM-dd HH:mm + ${project.version} -- cgit v1.2.3