aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2021-01-20 11:08:02 +0100
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2021-01-20 15:04:47 +0100
commit57a3caaaca06484246a3897e740b5f73753d3b08 (patch)
treeb0bfb8c956aa0deffc1738559407654507b0577f /vespaclient-container-plugin/pom.xml
parent647afcf0826e2d3e8fad0d3c529ffaf1a32712aa (diff)
Ensure transitive dependencies of vespajlib are present on test classpath
Some modules misuse container-dev as a compile/test dependency or have container-test missing as test dependency. Depend on container-test where it does not create a cycle. Otherwise depend directly on vespajlib without altering scope of existing transitive vespajlib dependency.
Diffstat (limited to 'vespaclient-container-plugin/pom.xml')
-rw-r--r--vespaclient-container-plugin/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/vespaclient-container-plugin/pom.xml b/vespaclient-container-plugin/pom.xml
index 8254c208588..834c3d7c988 100644
--- a/vespaclient-container-plugin/pom.xml
+++ b/vespaclient-container-plugin/pom.xml
@@ -78,6 +78,12 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>container-test</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>