aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2020-07-03 10:46:26 +0200
committerGitHub <noreply@github.com>2020-07-03 10:46:26 +0200
commit2ddd6ac6f825dfc35a8f2cf592b860282a71ffdc (patch)
tree376d643c52cd93027766f0deafcd32dec36e584b
parenta547b60057da5600628560e5b7ccff8a4d60054f (diff)
parentd222fe2087592c016da874762d4030f9e06535f7 (diff)
Merge pull request #13794 from vespa-engine/mortent/include-dummy-file
Create dummy file in artifacts folder
-rw-r--r--hosted-tenant-base/pom.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/hosted-tenant-base/pom.xml b/hosted-tenant-base/pom.xml
index 0e8da685872..d453da74b74 100644
--- a/hosted-tenant-base/pom.xml
+++ b/hosted-tenant-base/pom.xml
@@ -255,6 +255,9 @@
</goals>
<configuration>
<tasks>
+ <!-- Creating a dummy file to support running tests with old test runner. Remove when it is no longer in use -->
+ <mkdir dir="target/application-test/artifacts" />
+ <touch file="target/application-test/artifacts/.ignore" />
<copy file="target/${project.artifactId}-tests.jar" todir="target/application-test/components/" />
<zip destfile="target/application-test.zip" basedir="target/application-test/" />
</tasks>