aboutsummaryrefslogtreecommitdiffstats
path: root/screwdriver/update-vespa-version-in-sample-apps.sh
diff options
context:
space:
mode:
authorEirik Nygaard <eirik.nygaard@yahooinc.com>2022-08-09 12:53:54 +0200
committerEirik Nygaard <eirik.nygaard@yahooinc.com>2022-08-09 12:53:54 +0200
commit7f0f5e22c5ee1e7e44de059cb99cfbc4c7c7270e (patch)
treef71ed7d4f2e3112d06f332067f05286de6520701 /screwdriver/update-vespa-version-in-sample-apps.sh
parentf5dda96353e119f62bc481eaf13bcf2f28269554 (diff)
Update group id to follow sample-apps changes
Diffstat (limited to 'screwdriver/update-vespa-version-in-sample-apps.sh')
-rwxr-xr-xscrewdriver/update-vespa-version-in-sample-apps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/screwdriver/update-vespa-version-in-sample-apps.sh b/screwdriver/update-vespa-version-in-sample-apps.sh
index f7db668c33a..22a55b0ce20 100755
--- a/screwdriver/update-vespa-version-in-sample-apps.sh
+++ b/screwdriver/update-vespa-version-in-sample-apps.sh
@@ -19,7 +19,7 @@ function is_published {
rm -rf $TMP_MVN_REPO/com/yahoo/vespa
# Because the transfer of artifacts to Maven Central is not atomic we can't just check a simple pom or jar to be available. Because of this we
# check that the publication is complete enough to compile a Java sample app
- if mvn -V -B -pl ai.vespa.example:album-recommendation-java -Dmaven.repo.local=$TMP_MVN_REPO -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -DskipTests clean package; then
+ if mvn -V -B -pl ai.vespa.examples:album-recommendation-java -Dmaven.repo.local=$TMP_MVN_REPO -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -DskipTests clean package; then
return 0
else
return 1