aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchain/pom.xml5
-rw-r--r--config-model/pom.xml5
-rw-r--r--container-di/pom.xml5
-rw-r--r--statistics/pom.xml5
-rw-r--r--vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java3
5 files changed, 0 insertions, 23 deletions
diff --git a/chain/pom.xml b/chain/pom.xml
index 8f76598c51e..6b4da4f8c72 100755
--- a/chain/pom.xml
+++ b/chain/pom.xml
@@ -39,11 +39,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>provided-dependencies</artifactId>
<version>${project.version}</version>
diff --git a/config-model/pom.xml b/config-model/pom.xml
index 965d97bb605..715718f8bb5 100644
--- a/config-model/pom.xml
+++ b/config-model/pom.xml
@@ -293,11 +293,6 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <scope>test</scope>
- </dependency>
</dependencies>
<build>
diff --git a/container-di/pom.xml b/container-di/pom.xml
index 216f9e9628b..d4f97dced40 100644
--- a/container-di/pom.xml
+++ b/container-di/pom.xml
@@ -39,11 +39,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>provided-dependencies</artifactId>
<version>${project.version}</version>
diff --git a/statistics/pom.xml b/statistics/pom.xml
index 8206d97ad34..491d339ec2a 100644
--- a/statistics/pom.xml
+++ b/statistics/pom.xml
@@ -34,11 +34,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>vespalog</artifactId>
<version>${project.version}</version>
diff --git a/vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java b/vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java
index f197cc34b32..b422c3b34fd 100644
--- a/vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java
+++ b/vespajlib/src/test/java/com/yahoo/time/TimeBudgetTest.java
@@ -5,7 +5,6 @@ import com.google.common.util.concurrent.UncheckedTimeoutException;
import com.yahoo.test.ManualClock;
import org.junit.Test;
-import java.time.Clock;
import java.time.Duration;
import java.time.Instant;
import java.util.Optional;
@@ -13,10 +12,8 @@ import java.util.Optional;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.fail;
-import static org.mockito.Mockito.mock;
public class TimeBudgetTest {
- private final Clock clock = mock(Clock.class);
@Test
public void testBasics() {