Removed cfenv from dependencies

Updated tests that used it.

resolves #681
This commit is contained in:
Glenn Renfro
2020-07-08 12:41:56 -04:00
parent 59c9adf047
commit 80f39bea84
3 changed files with 38 additions and 16 deletions

View File

@@ -13,6 +13,9 @@
<packaging>jar</packaging>
<name>Spring Cloud Task Core</name>
<description>Spring Cloud Task</description>
<properties>
<jmock-version>1.49</jmock-version>
</properties>
<dependencies>
<dependency>
@@ -109,11 +112,6 @@
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
</dependency>
<dependency>
<groupId>io.pivotal.cfenv</groupId>
<artifactId>java-cfenv-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
@@ -124,6 +122,12 @@
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>${jmock-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>