summaryrefslogtreecommitdiffstats
path: root/container-search-and-docproc
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-02-19 19:09:32 +0100
committergjoranv <gv@verizonmedia.com>2021-02-19 19:22:42 +0100
commit2f4689c26c0bf8a536a2806d0bca9254c5054a94 (patch)
treefc8e3e0dd2b86087d96391e3bc2e1f158d89ea74 /container-search-and-docproc
parentc0d6065a5d798c00c7c429aa9d7a611c51253ccf (diff)
Rearrange deps, no functional changes.
Diffstat (limited to 'container-search-and-docproc')
-rw-r--r--container-search-and-docproc/pom.xml73
1 files changed, 40 insertions, 33 deletions
diff --git a/container-search-and-docproc/pom.xml b/container-search-and-docproc/pom.xml
index 1663830a457..a903bfaef63 100644
--- a/container-search-and-docproc/pom.xml
+++ b/container-search-and-docproc/pom.xml
@@ -15,38 +15,14 @@
<version>7-SNAPSHOT</version>
<packaging>container-plugin</packaging>
<dependencies>
+
+ <!-- COMPILE scope -->
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-library</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
+ <!-- TODO: this was changed from scope provided in 3594d15ab25fe245f76e7563f12b4f5797b985c7. Why? -->
<groupId>com.yahoo.vespa</groupId>
- <artifactId>simplemetrics</artifactId>
- <version>${project.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>provided-dependencies</artifactId>
- <version>${project.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>component</artifactId>
+ <artifactId>searchlib</artifactId>
<version>${project.version}</version>
- <scope>provided</scope>
+ <scope>compile</scope>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
@@ -120,6 +96,26 @@
</exclusion>
</exclusions>
</dependency>
+
+ <!-- PROVIDED scope -->
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>simplemetrics</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>provided-dependencies</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>component</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>configdefinitions</artifactId>
@@ -191,11 +187,22 @@
<artifactId>json</artifactId>
<scope>provided</scope>
</dependency>
+
+ <!-- TEST scope -->
<dependency>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>searchlib</artifactId>
- <version>${project.version}</version>
- <scope>compile</scope>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-library</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <scope>test</scope>
</dependency>
</dependencies>
<build>