aboutsummaryrefslogtreecommitdiffstats
path: root/tenant-cd-api
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2020-07-01 15:01:51 +0200
committerGitHub <noreply@github.com>2020-07-01 15:01:51 +0200
commitae0f04876dcafcfb754deb9a007f91ce4ce52646 (patch)
treedf58ad8f559317c513d1dfc11d77acf2201a5a51 /tenant-cd-api
parentb6bc5ce6319b1fe73c181bcf2b25a28a64bb9701 (diff)
parentbada9c366b37ad7db963afbe91c5b333cd31fbfb (diff)
Merge pull request #13770 from vespa-engine/bjorncs/hosted-tenant-base
Bjorncs/hosted tenant base
Diffstat (limited to 'tenant-cd-api')
-rw-r--r--tenant-cd-api/pom.xml14
1 files changed, 12 insertions, 2 deletions
diff --git a/tenant-cd-api/pom.xml b/tenant-cd-api/pom.xml
index 23e5f3ec3f4..47e0f6e3fe6 100644
--- a/tenant-cd-api/pom.xml
+++ b/tenant-cd-api/pom.xml
@@ -19,6 +19,16 @@
<relativePath>../parent</relativePath>
</parent>
+ <properties>
+
+ <!--
+ This version must match the string in all ExportPackage annotations.
+ It must also be in sync junit version specified in 'hosted-tenant-base'.
+ -->
+ <hosted-tenant-base-junit-version>5.6.2</hosted-tenant-base-junit-version>
+
+ </properties>
+
<dependencies>
<!-- provided -->
<dependency>
@@ -42,10 +52,10 @@
</dependency>
<!-- compile -->
- <dependency> <!-- TODO(bjorncs): share junit version number with test-runner implementation -->
+ <dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
- <version>5.6.2</version> <!-- NOTE: This version must match the string in all ExportPackage annotations -->
+ <version>${hosted-tenant-base-junit-version}</version>
<scope>compile</scope>
</dependency>
</dependencies>