summaryrefslogtreecommitdiffstats
path: root/vespajlib/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-09-10 12:31:02 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2018-09-10 12:48:19 +0200
commit032de91dbed21ddd4d4561c8fcbf34a4ae252f3f (patch)
tree443267ddefa741338db381a1ceb0fd450a20da21 /vespajlib/pom.xml
parentc50f5d6abacb8afce3d1046dca086b1ee8981c77 (diff)
Change scope of Jackson dependencies to 'provided'
Diffstat (limited to 'vespajlib/pom.xml')
-rw-r--r--vespajlib/pom.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/vespajlib/pom.xml b/vespajlib/pom.xml
index 3e3c3ae988f..5b9c143a447 100644
--- a/vespajlib/pom.xml
+++ b/vespajlib/pom.xml
@@ -61,6 +61,16 @@
<artifactId>bcpkix-jdk15on</artifactId>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <scope>provided</scope>
+ </dependency>
<!-- test scope -->
<dependency>
@@ -79,16 +89,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>testutil</artifactId>
<version>${project.version}</version>