diff options
author | Christian Kollmann <christian.kollmann@a-sit.at> | 2021-02-25 08:33:16 +0100 |
---|---|---|
committer | Christian Kollmann <christian.kollmann@a-sit.at> | 2021-02-25 13:27:15 +0100 |
commit | cdec2bbf39649f0fbe3d1655f5b47f62a5d0bae6 (patch) | |
tree | b948b2e7691b0bd71d9427dcec242f53a3835b05 /connector | |
parent | 0c4fe92684a707040fd7536da05945a64b309740 (diff) | |
download | National_eIDAS_Gateway-cdec2bbf39649f0fbe3d1655f5b47f62a5d0bae6.tar.gz National_eIDAS_Gateway-cdec2bbf39649f0fbe3d1655f5b47f62a5d0bae6.tar.bz2 National_eIDAS_Gateway-cdec2bbf39649f0fbe3d1655f5b47f62a5d0bae6.zip |
Prepare for Mockito testing of MobilePhoneSignature task
Diffstat (limited to 'connector')
-rw-r--r-- | connector/pom.xml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/connector/pom.xml b/connector/pom.xml index c2039ad7..0386e1f1 100644 --- a/connector/pom.xml +++ b/connector/pom.xml @@ -52,7 +52,7 @@ <artifactId>eaaf_module_pvp2_sp</artifactId> </dependency> - <!-- Third party libs --> + <!-- Third party libs --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> @@ -66,7 +66,7 @@ <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> - </dependency> + </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> @@ -94,7 +94,7 @@ <dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> - </dependency> + </dependency> <!-- Testing --> @@ -112,7 +112,7 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> - </dependency> + </dependency> <dependency> <groupId>at.gv.egiz.eaaf</groupId> <artifactId>eaaf_core_utils</artifactId> @@ -136,10 +136,15 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>at.gv.egiz.eaaf</groupId> <artifactId>eaaf-springboot-utils</artifactId> <scope>test</scope> - </dependency> + </dependency> <dependency> <groupId>com.github.skjolber</groupId> <artifactId>mockito-soap-cxf</artifactId> @@ -161,9 +166,9 @@ <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <scope>test</scope> - </dependency> + </dependency> </dependencies> - + <profiles> <profile> <id>default</id> @@ -173,7 +178,7 @@ <name>default</name> </property> </activation> - <dependencies> + <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> @@ -191,12 +196,12 @@ <dependency> <groupId>at.gv.egiz.eaaf</groupId> <artifactId>eaaf-springboot-utils</artifactId> - </dependency> + </dependency> </dependencies> </profile> - + </profiles> - + <build> <finalName>ms_connector</finalName> |