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
committed by Michael Minella
parent 086adf6c57
commit d4c3387ef0
3 changed files with 45 additions and 13 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>
@@ -110,8 +113,19 @@
<artifactId>micrometer-core</artifactId>
</dependency>
<dependency>
<groupId>io.pivotal.cfenv</groupId>
<artifactId>java-cfenv-test-support</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<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>