aboutsummaryrefslogtreecommitdiffstats
path: root/tenant-base
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2020-02-19 15:50:22 +0100
committerJon Marius Venstad <venstad@gmail.com>2020-02-19 15:50:22 +0100
commitd13fe02b9969fa6d5b8011c4049f3682b0bdd0d6 (patch)
tree0dfc367160ba54a2cd28af5ef9332abc027a46cd /tenant-base
parent1a230786bd0709198dcd8e72ed8d326d26c073d8 (diff)
Allow vespa.runtime|compile.version for those versions
Diffstat (limited to 'tenant-base')
-rw-r--r--tenant-base/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/tenant-base/pom.xml b/tenant-base/pom.xml
index 22e1bb0e9ca..f925ed9796c 100644
--- a/tenant-base/pom.xml
+++ b/tenant-base/pom.xml
@@ -253,6 +253,28 @@
</plugins>
</build>
</profile>
+
+ <profile> <!-- Alias vespaversion with a more descriptive vespa.compile.version -->
+ <activation>
+ <property>
+ <name>vespa.compile.version</name>
+ </property>
+ </activation>
+ <properties>
+ <vespaversion>${vespa.compile.version}</vespaversion>
+ </properties>
+ </profile>
+
+ <profile> <!-- Alias vespaVersion with a more descriptive vespa.runtime.version -->
+ <activation>
+ <property>
+ <name>vespa.runtime.version</name>
+ </property>
+ </activation>
+ <properties>
+ <vespaVersion>${vespa.runtime.version}</vespaVersion>
+ </properties>
+ </profile>
</profiles>
<build>