diff options
author | Thomas <> | 2022-06-03 11:40:52 +0200 |
---|---|---|
committer | Thomas <> | 2022-06-03 11:40:52 +0200 |
commit | 38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8 (patch) | |
tree | 9a556f0a592577173a7b22324707376ce11d097d /pom.xml | |
parent | e8e75813ab549d03b0ac482fe0e1e86ee660b8b0 (diff) | |
download | National_eIDAS_Gateway-38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8.tar.gz National_eIDAS_Gateway-38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8.tar.bz2 National_eIDAS_Gateway-38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8.zip |
refactor(eidas): split 'authmodule-eIDAS-v2' into 'common-eidas'
code and connector-specific elements
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -136,9 +136,9 @@ <modules> <module>connector</module> - <module>modules</module> - <module>build_reporting</module> <module>ms_specific_proxyservice</module> + <module>modules</module> + <module>build_reporting</module> </modules> <dependencyManagement> @@ -221,7 +221,12 @@ <artifactId>core_common_webapp</artifactId> <version>${egiz.eidas.version}</version> </dependency> - + <dependency> + <groupId>at.asitplus.eidas.ms_specific</groupId> + <artifactId>core_commons_eidas</artifactId> + <version>${egiz.eidas.version}</version> + </dependency> + <!-- eIDAS reference implemenation libs --> <dependency> <groupId>eu.eidas</groupId> @@ -566,7 +571,14 @@ <version>${egiz.eidas.version}</version> <scope>test</scope> <type>test-jar</type> - </dependency> + </dependency> + <dependency> + <groupId>at.asitplus.eidas.ms_specific</groupId> + <artifactId>core_commons_eidas</artifactId> + <version>${egiz.eidas.version}</version> + <scope>test</scope> + <type>test-jar</type> + </dependency> <dependency> <groupId>at.asitplus.eidas.ms_specific.modules</groupId> <artifactId>authmodule-eIDAS-v2</artifactId> |