summaryrefslogtreecommitdiffstats
path: root/container-search/pom.xml
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-02-19 19:12:01 +0100
committergjoranv <gv@verizonmedia.com>2021-02-19 19:22:42 +0100
commite3de588e7689b3fd0703b45dc665ee3f913b42cc (patch)
tree49163a2ae7be71f257058617c0ae384eeaa181ad /container-search/pom.xml
parent2f4689c26c0bf8a536a2806d0bca9254c5054a94 (diff)
Use explicit dependencies instead of 'provided-dependencies'
.. while keeping all necessary provided deps to get all imports needed by the compile scoped deps in each module.
Diffstat (limited to 'container-search/pom.xml')
-rw-r--r--container-search/pom.xml16
1 files changed, 14 insertions, 2 deletions
diff --git a/container-search/pom.xml b/container-search/pom.xml
index 014b7dda14f..ec7dcb713fe 100644
--- a/container-search/pom.xml
+++ b/container-search/pom.xml
@@ -32,7 +32,13 @@
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
- <artifactId>provided-dependencies</artifactId>
+ <artifactId>jdisc_core</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>jdisc_http_service</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
@@ -44,7 +50,13 @@
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
- <artifactId>config-bundle</artifactId>
+ <artifactId>config</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>config-lib</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>