summaryrefslogtreecommitdiff
path: root/eaaf-springboot-utils/pom.xml
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-28 15:51:42 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-28 15:51:42 +0100
commit495403c917a39fdeb3906f10ac8b997f68eb3875 (patch)
tree6797d9af002bbf384597ea016f9c7afa021692a3 /eaaf-springboot-utils/pom.xml
parent1aafdf3bbae55b09e6d28e97281797ba9e53aad0 (diff)
downloadEAAF-Components-495403c917a39fdeb3906f10ac8b997f68eb3875.tar.gz
EAAF-Components-495403c917a39fdeb3906f10ac8b997f68eb3875.tar.bz2
EAAF-Components-495403c917a39fdeb3906f10ac8b997f68eb3875.zip
update to HSM-Facade v0.6.0 and add HealthCheck functionality
Diffstat (limited to 'eaaf-springboot-utils/pom.xml')
-rw-r--r--eaaf-springboot-utils/pom.xml32
1 files changed, 31 insertions, 1 deletions
diff --git a/eaaf-springboot-utils/pom.xml b/eaaf-springboot-utils/pom.xml
index 1e6a85be..9e5a897b 100644
--- a/eaaf-springboot-utils/pom.xml
+++ b/eaaf-springboot-utils/pom.xml
@@ -36,13 +36,23 @@
<dependencies>
<dependency>
+ <groupId>at.gv.egiz.eaaf</groupId>
+ <artifactId>eaaf_core_utils</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-actuator</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
@@ -61,11 +71,31 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-test</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>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>test</scope>
</dependency>
-
+ <dependency>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-module-junit4</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-api-mockito2</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>