diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-06-19 15:53:47 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-06-19 15:53:47 +0200 |
commit | dde5479553eb954e41fc8fe85abf45cf579d3034 (patch) | |
tree | 7347319e2b64560beb1a77a483d603306ac2beaa /eaaf_modules/eaaf_module_auth_sl20/pom.xml | |
parent | d5df50291368c099c0c2c382dedc861b99a98462 (diff) | |
download | EAAF-Components-dde5479553eb954e41fc8fe85abf45cf579d3034.tar.gz EAAF-Components-dde5479553eb954e41fc8fe85abf45cf579d3034.tar.bz2 EAAF-Components-dde5479553eb954e41fc8fe85abf45cf579d3034.zip |
add first simple jUnit tests for JOSE-Utils
Diffstat (limited to 'eaaf_modules/eaaf_module_auth_sl20/pom.xml')
-rw-r--r-- | eaaf_modules/eaaf_module_auth_sl20/pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/eaaf_modules/eaaf_module_auth_sl20/pom.xml b/eaaf_modules/eaaf_module_auth_sl20/pom.xml index d8efcfa1..ab7c9258 100644 --- a/eaaf_modules/eaaf_module_auth_sl20/pom.xml +++ b/eaaf_modules/eaaf_module_auth_sl20/pom.xml @@ -52,6 +52,34 @@ <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>at.gv.egiz.eaaf</groupId> + <artifactId>eaaf_core_utils</artifactId> + <scope>test</scope> + <type>test-jar</type> + </dependency> + <dependency> + <groupId>at.asitplus.hsmfacade</groupId> + <artifactId>provider</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build> |