diff options
| author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2021-01-05 18:30:40 +0100 | 
|---|---|---|
| committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2021-01-05 18:30:40 +0100 | 
| commit | 013febf9435d0aa3536897b3636787ae3ba15935 (patch) | |
| tree | 5c424808d8bbb31b755736106639d3831c466f2e /eaaf-springboot-utils/pom.xml | |
| parent | 228d4e40cfb8fc3fa7912064af3768a74beb9312 (diff) | |
| parent | 07dcace901880965ea4b25816500f256f17899c0 (diff) | |
| download | EAAF-Components-013febf9435d0aa3536897b3636787ae3ba15935.tar.gz EAAF-Components-013febf9435d0aa3536897b3636787ae3ba15935.tar.bz2 EAAF-Components-013febf9435d0aa3536897b3636787ae3ba15935.zip | |
Merge branch 'nightlyBuild' of gitlab.iaik.tugraz.at:egiz/eaaf_components into nightlyBuild
Diffstat (limited to 'eaaf-springboot-utils/pom.xml')
| -rw-r--r-- | eaaf-springboot-utils/pom.xml | 32 | 
1 files changed, 31 insertions, 1 deletions
| diff --git a/eaaf-springboot-utils/pom.xml b/eaaf-springboot-utils/pom.xml index 825f3ca5..f4a5761c 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> | 
