diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-05-05 14:59:51 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-05-05 14:59:51 +0200 |
commit | 8577b14115b819f4173b892a75094b708d03958a (patch) | |
tree | bef4de112d42f337fec2995b0e6fd33b6f0b94a9 /eaaf_modules | |
parent | 36fafda8e3b953d3d1cba91efeb4fc82388b0445 (diff) | |
download | EAAF-Components-8577b14115b819f4173b892a75094b708d03958a.tar.gz EAAF-Components-8577b14115b819f4173b892a75094b708d03958a.tar.bz2 EAAF-Components-8577b14115b819f4173b892a75094b708d03958a.zip |
refactor HSM-Facade initialization to JAVA Reflection API to facilitate usage of eaaf_core_utils without HSM-Facade
Diffstat (limited to 'eaaf_modules')
-rw-r--r-- | eaaf_modules/eaaf_module_pvp2_core/pom.xml | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/eaaf_modules/eaaf_module_pvp2_core/pom.xml b/eaaf_modules/eaaf_module_pvp2_core/pom.xml index e922dc39..d9d68a5d 100644 --- a/eaaf_modules/eaaf_module_pvp2_core/pom.xml +++ b/eaaf_modules/eaaf_module_pvp2_core/pom.xml @@ -88,11 +88,21 @@ <scope>test</scope> </dependency> <dependency> - <groupId>xml-apis</groupId> - <artifactId>xml-apis</artifactId> - <version>1.4.01</version> - <scope>test</scope> - </dependency> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + <version>1.4.01</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>at.asitplus.hsmfacade</groupId> + <artifactId>provider</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-core</artifactId> + <scope>test</scope> + </dependency> </dependencies> |