From 37472a9286b33205ef78387cbbe0dca72f6bd244 Mon Sep 17 00:00:00 2001 From: Bjørn Christian Seime Date: Wed, 1 Jun 2022 13:30:58 +0200 Subject: Add org.json to container-test --- container-test/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'container-test') diff --git a/container-test/pom.xml b/container-test/pom.xml index 961d827a390..438a2ca5024 100644 --- a/container-test/pom.xml +++ b/container-test/pom.xml @@ -97,5 +97,11 @@ commons-compress compile + + + org.json + json + compile + -- cgit v1.2.3 From 4aff0cb17fcd2f14d8b0f4e1d6caf9cd871d7b74 Mon Sep 17 00:00:00 2001 From: gjoranv Date: Sat, 4 Jun 2022 15:11:54 +0200 Subject: Stop providing org.lz4:lz4-java and exporting net.jpountz packages - Not leaked from any public apis. - Must be added to container-test for unit tests with application --- cloud-tenant-base-dependencies-enforcer/pom.xml | 2 +- container-dependencies-enforcer/pom.xml | 1 - container-dependency-versions/pom.xml | 6 ------ container-dev/pom.xml | 4 ++++ container-test/pom.xml | 5 +++++ parent/pom.xml | 6 ++++++ vespajlib/src/main/java/net/jpountz/lz4/package-info.java | 5 ----- vespajlib/src/main/java/net/jpountz/util/package-info.java | 5 ----- vespajlib/src/main/java/net/jpountz/xxhash/package-info.java | 5 ----- 9 files changed, 16 insertions(+), 23 deletions(-) delete mode 100644 vespajlib/src/main/java/net/jpountz/lz4/package-info.java delete mode 100644 vespajlib/src/main/java/net/jpountz/util/package-info.java delete mode 100644 vespajlib/src/main/java/net/jpountz/xxhash/package-info.java (limited to 'container-test') diff --git a/cloud-tenant-base-dependencies-enforcer/pom.xml b/cloud-tenant-base-dependencies-enforcer/pom.xml index 67baeb9af8b..0253683f0e3 100644 --- a/cloud-tenant-base-dependencies-enforcer/pom.xml +++ b/cloud-tenant-base-dependencies-enforcer/pom.xml @@ -95,7 +95,6 @@ javax.servlet:javax.servlet-api:[${javax.servlet-api.version}]:jar:provided javax.ws.rs:javax.ws.rs-api:[${javax.ws.rs-api.version}]:jar:provided javax.xml.bind:jaxb-api:[${jaxb.version}]:jar:provided - org.lz4:lz4-java:[${org.lz4.version}]:jar:provided org.apache.felix:org.apache.felix.framework:[${felix.version}]:jar:provided org.apache.felix:org.apache.felix.log:[${felix.log.version}]:jar:provided org.apache.felix:org.apache.felix.main:[${felix.version}]:jar:provided @@ -250,6 +249,7 @@ org.junit.platform:junit-platform-engine:[${junit5.platform.version}]:jar:test org.junit.vintage:junit-vintage-engine:[${junit5.version}]:jar:test org.kohsuke:libpam4j:1.11:jar:test + org.lz4:lz4-java:[${org.lz4.version}]:jar:test org.opentest4j:opentest4j:1.2.0:jar:test software.amazon.ion:ion-java:1.0.2:jar:test xerces:xercesImpl:2.12.1:jar:test diff --git a/container-dependencies-enforcer/pom.xml b/container-dependencies-enforcer/pom.xml index 605d33f1c82..e507bffa7dc 100644 --- a/container-dependencies-enforcer/pom.xml +++ b/container-dependencies-enforcer/pom.xml @@ -80,7 +80,6 @@ javax.servlet:javax.servlet-api:[${javax.servlet-api.version}]:jar:provided javax.ws.rs:javax.ws.rs-api:[${javax.ws.rs-api.version}]:jar:provided javax.xml.bind:jaxb-api:[${jaxb.version}]:jar:provided - org.lz4:lz4-java:[${org.lz4.version}]:jar:provided org.apache.felix:org.apache.felix.framework:[${felix.version}]:jar:provided org.apache.felix:org.apache.felix.log:[${felix.log.version}]:jar:provided org.apache.felix:org.apache.felix.main:[${felix.version}]:jar:provided diff --git a/container-dependency-versions/pom.xml b/container-dependency-versions/pom.xml index 706ec1b437c..771451084c8 100644 --- a/container-dependency-versions/pom.xml +++ b/container-dependency-versions/pom.xml @@ -129,11 +129,6 @@ - - org.lz4 - lz4-java - ${org.lz4.version} - org.apache.felix org.apache.felix.framework @@ -278,7 +273,6 @@ 2.3.0 9.4.46.v20220331 1.1.3.v20160715 - 1.8.0 20090211 1.7.32 1.4.01 diff --git a/container-dev/pom.xml b/container-dev/pom.xml index 844fc26a6ef..39276b888b1 100644 --- a/container-dev/pom.xml +++ b/container-dev/pom.xml @@ -125,6 +125,10 @@ org.apache.commons commons-compress + + org.lz4 + lz4-java + diff --git a/container-test/pom.xml b/container-test/pom.xml index 438a2ca5024..c6474730f42 100644 --- a/container-test/pom.xml +++ b/container-test/pom.xml @@ -103,5 +103,10 @@ json compile + + + org.lz4 + lz4-java + diff --git a/parent/pom.xml b/parent/pom.xml index c1650d96ca7..c23b19a64bf 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -876,6 +876,11 @@ mimepull 1.9.6 + + org.lz4 + lz4-java + ${org.lz4.version} + org.mockito mockito-core @@ -992,6 +997,7 @@ 3.2.1 4.0.0 1.8.0 + 1.8.0 0.6.0 3.19.2 1.3.3 diff --git a/vespajlib/src/main/java/net/jpountz/lz4/package-info.java b/vespajlib/src/main/java/net/jpountz/lz4/package-info.java deleted file mode 100644 index 478f666dab4..00000000000 --- a/vespajlib/src/main/java/net/jpountz/lz4/package-info.java +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -@ExportPackage(version = @Version(major = 1, minor = 7, micro = 1)) -package net.jpountz.lz4; -import com.yahoo.osgi.annotation.ExportPackage; -import com.yahoo.osgi.annotation.Version; diff --git a/vespajlib/src/main/java/net/jpountz/util/package-info.java b/vespajlib/src/main/java/net/jpountz/util/package-info.java deleted file mode 100644 index 66089785785..00000000000 --- a/vespajlib/src/main/java/net/jpountz/util/package-info.java +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -@ExportPackage(version = @Version(major = 1, minor = 7, micro = 1)) -package net.jpountz.util; -import com.yahoo.osgi.annotation.ExportPackage; -import com.yahoo.osgi.annotation.Version; diff --git a/vespajlib/src/main/java/net/jpountz/xxhash/package-info.java b/vespajlib/src/main/java/net/jpountz/xxhash/package-info.java deleted file mode 100644 index e9ceccb9a34..00000000000 --- a/vespajlib/src/main/java/net/jpountz/xxhash/package-info.java +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -@ExportPackage(version = @Version(major = 1, minor = 7, micro = 1)) -package net.jpountz.xxhash; -import com.yahoo.osgi.annotation.ExportPackage; -import com.yahoo.osgi.annotation.Version; -- cgit v1.2.3 From b2270049df9a03c1c811513fc93ee11f06dd4cf1 Mon Sep 17 00:00:00 2001 From: gjoranv Date: Mon, 6 Jun 2022 01:17:59 +0200 Subject: Stop providing bouncycastle via the 'container' artifact. - Add missing dependencies for security-utils so that bouncycastle import-packages are generated for modules that formerly relied only on container-dev or provided-dependencies. - Add bouncycastle to container-test --- cloud-tenant-base-dependencies-enforcer/pom.xml | 7 +++---- container-dependencies-enforcer/pom.xml | 2 -- container-dependency-versions/pom.xml | 11 ----------- container-test/pom.xml | 8 ++++++++ controller-api/pom.xml | 7 +++++++ parent/pom.xml | 11 +++++++++++ provided-dependencies/pom.xml | 8 -------- zookeeper-server/pom.xml | 6 ++++++ 8 files changed, 35 insertions(+), 25 deletions(-) (limited to 'container-test') diff --git a/cloud-tenant-base-dependencies-enforcer/pom.xml b/cloud-tenant-base-dependencies-enforcer/pom.xml index 729cd91e314..5359428fe22 100644 --- a/cloud-tenant-base-dependencies-enforcer/pom.xml +++ b/cloud-tenant-base-dependencies-enforcer/pom.xml @@ -21,6 +21,7 @@ 1.10.54 + 1.68 7.0.1 5.1.2 4.5.13 @@ -33,7 +34,6 @@ 1.0 - 1.68 27.1-jre 4.2.3 2.13.3 @@ -94,8 +94,6 @@ javax.servlet:javax.servlet-api:[${javax.servlet-api.version}]:jar:provided javax.ws.rs:javax.ws.rs-api:[${javax.ws.rs-api.version}]:jar:provided javax.xml.bind:jaxb-api:[${jaxb.version}]:jar:provided - org.bouncycastle:bcpkix-jdk15on:[${bouncycastle.version}]:jar:provided - org.bouncycastle:bcprov-jdk15on:[${bouncycastle.version}]:jar:provided org.slf4j:jcl-over-slf4j:[${slf4j.version}]:jar:provided org.slf4j:log4j-over-slf4j:[${slf4j.version}]:jar:provided org.slf4j:slf4j-api:[${slf4j.version}]:jar:provided @@ -219,7 +217,8 @@ org.apache.httpcomponents:httpmime:${httpclient.version}:jar:test org.apache.opennlp:opennlp-tools:1.9.3:jar:test org.apiguardian:apiguardian-api:1.1.0:jar:test - org.codehaus.woodstox:stax2-api:3.1.4:jar:test + org.bouncycastle:bcpkix-jdk15on:[${bouncycastle.version}]:jar:test + org.bouncycastle:bcprov-jdk15on:[${bouncycastle.version}]:jar:test org.codehaus.woodstox:stax2-api:3.1.4:jar:test org.eclipse.jetty.alpn:alpn-api:[${jetty-alpn.version}]:jar:test org.eclipse.jetty.http2:http2-common:[${jetty.version}]:jar:test org.eclipse.jetty.http2:http2-hpack:[${jetty.version}]:jar:test diff --git a/container-dependencies-enforcer/pom.xml b/container-dependencies-enforcer/pom.xml index 56ebc92f88d..c38ff5f9f2a 100644 --- a/container-dependencies-enforcer/pom.xml +++ b/container-dependencies-enforcer/pom.xml @@ -80,8 +80,6 @@ javax.servlet:javax.servlet-api:[${javax.servlet-api.version}]:jar:provided javax.ws.rs:javax.ws.rs-api:[${javax.ws.rs-api.version}]:jar:provided javax.xml.bind:jaxb-api:[${jaxb.version}]:jar:provided - org.bouncycastle:bcpkix-jdk15on:[${bouncycastle.version}]:jar:provided - org.bouncycastle:bcprov-jdk15on:[${bouncycastle.version}]:jar:provided org.slf4j:jcl-over-slf4j:[${slf4j.version}]:jar:provided org.slf4j:log4j-over-slf4j:[${slf4j.version}]:jar:provided org.slf4j:slf4j-api:[${slf4j.version}]:jar:provided diff --git a/container-dependency-versions/pom.xml b/container-dependency-versions/pom.xml index a47b91f3231..3379dfb1704 100644 --- a/container-dependency-versions/pom.xml +++ b/container-dependency-versions/pom.xml @@ -129,16 +129,6 @@ - - org.bouncycastle - bcpkix-jdk15on - ${bouncycastle.version} - - - org.bouncycastle - bcprov-jdk15on - ${bouncycastle.version} - org.slf4j jcl-over-slf4j @@ -245,7 +235,6 @@ 1.0 - 1.68 27.1-jre 4.2.3 2.13.3 diff --git a/container-test/pom.xml b/container-test/pom.xml index c6474730f42..c8ead0089d1 100644 --- a/container-test/pom.xml +++ b/container-test/pom.xml @@ -97,6 +97,14 @@ commons-compress compile + + org.bouncycastle + bcpkix-jdk15on + + + org.bouncycastle + bcprov-jdk15on + org.json diff --git a/controller-api/pom.xml b/controller-api/pom.xml index 42e96e0331a..580809c4181 100644 --- a/controller-api/pom.xml +++ b/controller-api/pom.xml @@ -67,6 +67,13 @@ provided + + com.yahoo.vespa + security-utils + ${project.version} + provided + + diff --git a/parent/pom.xml b/parent/pom.xml index 05b3df87e51..976a74ec152 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -773,6 +773,16 @@ assertj-core 3.11.1 + + org.bouncycastle + bcpkix-jdk15on + ${bouncycastle.version} + + + org.bouncycastle + bcprov-jdk15on + ${bouncycastle.version} + org.codehaus.jettison jettison @@ -984,6 +994,7 @@ find zkfacade/src/main/java/org/apache/curator -name package-info.java | \ xargs perl -pi -e 's/major = [0-9]+, minor = [0-9]+, micro = [0-9]+/major = 5, minor = 3, micro = 0/g' --> + 1.68 5.2.1 1.15 3.6.1 diff --git a/provided-dependencies/pom.xml b/provided-dependencies/pom.xml index a1a1c1b85b1..562db6d4f1f 100755 --- a/provided-dependencies/pom.xml +++ b/provided-dependencies/pom.xml @@ -32,14 +32,6 @@ - - org.bouncycastle - bcprov-jdk15on - - - org.bouncycastle - bcpkix-jdk15on - com.yahoo.vespa config-lib diff --git a/zookeeper-server/pom.xml b/zookeeper-server/pom.xml index 34f4c0e9191..06bb3a131af 100644 --- a/zookeeper-server/pom.xml +++ b/zookeeper-server/pom.xml @@ -23,6 +23,12 @@ ${project.version} provided + + com.yahoo.vespa + security-utils + ${project.version} + provided + -- cgit v1.2.3 From 23d34618733d9c67270ebbfe01aac72750a47241 Mon Sep 17 00:00:00 2001 From: gjoranv Date: Wed, 8 Jun 2022 01:22:39 +0200 Subject: Set project version to 8-SNAPSHOT --- abi-check-plugin/pom.xml | 4 ++-- annotations/pom.xml | 4 ++-- application-model/pom.xml | 4 ++-- application-preprocessor/pom.xml | 4 ++-- application/pom.xml | 4 ++-- athenz-identity-provider-service/pom.xml | 2 +- bundle-plugin-test/integration-test/pom.xml | 4 ++-- bundle-plugin-test/pom.xml | 4 ++-- .../test-bundles/artifact-version-for-exports-dep/pom.xml | 4 ++-- bundle-plugin-test/test-bundles/artifact-version-for-exports/pom.xml | 4 ++-- bundle-plugin-test/test-bundles/main/pom.xml | 4 ++-- bundle-plugin-test/test-bundles/pom.xml | 4 ++-- bundle-plugin/pom.xml | 4 ++-- client/pom.xml | 4 ++-- cloud-tenant-base-dependencies-enforcer/pom.xml | 4 ++-- cloud-tenant-base/pom.xml | 4 ++-- cloud-tenant-cd/pom.xml | 2 +- clustercontroller-apps/pom.xml | 4 ++-- clustercontroller-core/pom.xml | 4 ++-- clustercontroller-reindexer/pom.xml | 2 +- clustercontroller-utils/pom.xml | 4 ++-- component/pom.xml | 4 ++-- config-application-package/pom.xml | 4 ++-- config-bundle/pom.xml | 4 ++-- config-class-plugin/pom.xml | 4 ++-- config-lib/pom.xml | 4 ++-- config-model-api/pom.xml | 4 ++-- config-model-fat/pom.xml | 4 ++-- config-model/pom.xml | 4 ++-- config-provisioning/pom.xml | 2 +- config-proxy/pom.xml | 4 ++-- config/pom.xml | 4 ++-- config_test/pom.xml | 2 +- configdefinitions/pom.xml | 4 ++-- configgen/pom.xml | 4 ++-- configserver-flags/pom.xml | 4 ++-- configserver/pom.xml | 4 ++-- container-apache-http-client-bundle/pom.xml | 4 ++-- container-core/pom.xml | 4 ++-- container-dependencies-enforcer/pom.xml | 4 ++-- container-dependency-versions/pom.xml | 2 +- container-dev/pom.xml | 4 ++-- container-disc/pom.xml | 4 ++-- container-documentapi/pom.xml | 4 ++-- container-integration-test/pom.xml | 4 ++-- container-messagebus/pom.xml | 4 ++-- container-search-and-docproc/pom.xml | 4 ++-- container-search-gui/pom.xml | 4 ++-- container-search/pom.xml | 4 ++-- container-test/pom.xml | 4 ++-- container/pom.xml | 4 ++-- controller-api/pom.xml | 4 ++-- controller-server/pom.xml | 4 ++-- defaults/pom.xml | 4 ++-- docproc/pom.xml | 4 ++-- docprocs/pom.xml | 4 ++-- document/pom.xml | 4 ++-- documentapi-dependencies/pom.xml | 4 ++-- documentapi/pom.xml | 4 ++-- documentgen-test/pom.xml | 4 ++-- fat-model-dependencies/pom.xml | 4 ++-- fileacquirer/pom.xml | 4 ++-- filedistribution/pom.xml | 4 ++-- flags/pom.xml | 4 ++-- fsa/pom.xml | 4 ++-- hosted-api/pom.xml | 2 +- hosted-tenant-base/pom.xml | 2 +- hosted-zone-api/pom.xml | 2 +- http-client/pom.xml | 2 +- http-utils/pom.xml | 4 ++-- indexinglanguage/pom.xml | 4 ++-- integration/intellij/pom.xml | 2 +- jaxrs_utils/pom.xml | 4 ++-- jdisc-cloud-aws/pom.xml | 4 ++-- jdisc-security-filters/pom.xml | 4 ++-- jdisc_core/pom.xml | 4 ++-- jdisc_core_test/integration_test/pom.xml | 4 ++-- jdisc_core_test/pom.xml | 4 ++-- jdisc_core_test/test_bundles/app-a/pom.xml | 4 ++-- jdisc_core_test/test_bundles/app-b-priv/pom.xml | 4 ++-- jdisc_core_test/test_bundles/app-ca/pom.xml | 4 ++-- jdisc_core_test/test_bundles/app-dj/pom.xml | 4 ++-- jdisc_core_test/test_bundles/app-ej-priv/pom.xml | 4 ++-- jdisc_core_test/test_bundles/app-f-more/pom.xml | 4 ++-- jdisc_core_test/test_bundles/app-g-act/pom.xml | 4 ++-- jdisc_core_test/test_bundles/app-h-log/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-a/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-b/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-ca/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-dc/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-eab/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-fac/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-gg/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-hi/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-ih/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-j-priv/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-k-pkgs/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-l1-dup/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-l1/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-l2/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-ml-dup/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-ml/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-nac/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-oa-path/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-p-jar/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-q-frag/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-rq/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-s-act/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-tp/pom.xml | 4 ++-- jdisc_core_test/test_bundles/cert-us/pom.xml | 4 ++-- jdisc_core_test/test_bundles/my-bundle-activator/pom.xml | 4 ++-- jdisc_core_test/test_bundles/my-guice-module/pom.xml | 4 ++-- jdisc_core_test/test_bundles/my-server-provider/pom.xml | 4 ++-- jdisc_core_test/test_bundles/pom.xml | 4 ++-- jdisc_jetty/pom.xml | 4 ++-- jrt/pom.xml | 4 ++-- linguistics-components/pom.xml | 4 ++-- linguistics/pom.xml | 4 ++-- logd/pom.xml | 4 ++-- logserver/pom.xml | 4 ++-- maven-plugins/pom.xml | 4 ++-- messagebus/pom.xml | 4 ++-- metrics-proxy/pom.xml | 4 ++-- metrics/pom.xml | 4 ++-- model-evaluation/pom.xml | 4 ++-- model-integration/pom.xml | 4 ++-- node-admin/pom.xml | 4 ++-- node-repository/pom.xml | 4 ++-- orchestrator-restapi/pom.xml | 4 ++-- orchestrator/pom.xml | 4 ++-- parent/pom.xml | 4 ++-- pom.xml | 2 +- predicate-search-core/pom.xml | 4 ++-- predicate-search/pom.xml | 4 ++-- provided-dependencies/pom.xml | 4 ++-- routing-generator/pom.xml | 4 ++-- searchcore/pom.xml | 4 ++-- searchlib/pom.xml | 4 ++-- searchsummary/pom.xml | 4 ++-- security-tools/pom.xml | 4 ++-- security-utils/pom.xml | 4 ++-- service-monitor/pom.xml | 4 ++-- socket_test/pom.xml | 4 ++-- standalone-container/pom.xml | 4 ++-- storage/pom.xml | 4 ++-- streamingvisitors/pom.xml | 4 ++-- tenant-base/pom.xml | 2 +- tenant-cd-api/pom.xml | 2 +- tenant-cd-commons/pom.xml | 2 +- testutil/pom.xml | 4 ++-- vdslib/pom.xml | 4 ++-- vespa-3party-bundles/pom.xml | 4 ++-- vespa-application-maven-plugin/pom.xml | 4 ++-- vespa-athenz/pom.xml | 4 ++-- vespa-documentgen-plugin/pom.xml | 4 ++-- vespa-feed-client-api/pom.xml | 4 ++-- vespa-feed-client-cli/pom.xml | 4 ++-- vespa-feed-client/pom.xml | 4 ++-- vespa-hadoop/pom.xml | 4 ++-- vespa-maven-plugin/pom.xml | 2 +- vespa-osgi-testrunner/pom.xml | 2 +- vespa-testrunner-components/pom.xml | 2 +- vespa_feed_perf/pom.xml | 4 ++-- vespaclient-container-plugin/pom.xml | 4 ++-- vespaclient-core/pom.xml | 4 ++-- vespaclient-java/pom.xml | 4 ++-- vespajlib/pom.xml | 4 ++-- vespalog/pom.xml | 4 ++-- yolean/pom.xml | 4 ++-- zkfacade/pom.xml | 4 ++-- zookeeper-client-common/pom.xml | 4 ++-- zookeeper-command-line-client/pom.xml | 4 ++-- zookeeper-server/pom.xml | 4 ++-- zookeeper-server/zookeeper-server-3.7.1/pom.xml | 4 ++-- zookeeper-server/zookeeper-server-common/pom.xml | 4 ++-- zookeeper-server/zookeeper-server/pom.xml | 4 ++-- 176 files changed, 334 insertions(+), 334 deletions(-) (limited to 'container-test') diff --git a/abi-check-plugin/pom.xml b/abi-check-plugin/pom.xml index 8d782b1d426..d24765a5f88 100644 --- a/abi-check-plugin/pom.xml +++ b/abi-check-plugin/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml abi-check-plugin - 7-SNAPSHOT + 8-SNAPSHOT maven-plugin ${project.artifactId} Maven Plugin for ensuring ABI stability. diff --git a/annotations/pom.xml b/annotations/pom.xml index 358188f71c2..e3f5455c88b 100644 --- a/annotations/pom.xml +++ b/annotations/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml annotations bundle - 7-SNAPSHOT + 8-SNAPSHOT annotations Public API annotations diff --git a/application-model/pom.xml b/application-model/pom.xml index 7eac247e249..2143f3a5ffd 100644 --- a/application-model/pom.xml +++ b/application-model/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml application-model container-plugin - 7-SNAPSHOT + 8-SNAPSHOT ${project.artifactId} Model classes for Vespa application entities such as host name, application id etc. diff --git a/application-preprocessor/pom.xml b/application-preprocessor/pom.xml index 644903e79dd..f8b521140f7 100644 --- a/application-preprocessor/pom.xml +++ b/application-preprocessor/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml application-preprocessor jar - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa diff --git a/application/pom.xml b/application/pom.xml index ceb8653cd1c..b0036b3ca3e 100644 --- a/application/pom.xml +++ b/application/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml application jar - 7-SNAPSHOT + 8-SNAPSHOT Runs an application directly from services.xml diff --git a/athenz-identity-provider-service/pom.xml b/athenz-identity-provider-service/pom.xml index 08521216736..d5e6b85f571 100644 --- a/athenz-identity-provider-service/pom.xml +++ b/athenz-identity-provider-service/pom.xml @@ -10,7 +10,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml diff --git a/bundle-plugin-test/integration-test/pom.xml b/bundle-plugin-test/integration-test/pom.xml index 5f9192b064b..a97d30fbaec 100644 --- a/bundle-plugin-test/integration-test/pom.xml +++ b/bundle-plugin-test/integration-test/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa.bundle-plugin bundle-plugin-test - 7-SNAPSHOT + 8-SNAPSHOT ../pom.xml integration-test - 7-SNAPSHOT + 8-SNAPSHOT jar diff --git a/bundle-plugin-test/pom.xml b/bundle-plugin-test/pom.xml index 0500e69acb3..16dd1238f53 100644 --- a/bundle-plugin-test/pom.xml +++ b/bundle-plugin-test/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml com.yahoo.vespa.bundle-plugin bundle-plugin-test - 7-SNAPSHOT + 8-SNAPSHOT pom integration-test diff --git a/bundle-plugin-test/test-bundles/artifact-version-for-exports-dep/pom.xml b/bundle-plugin-test/test-bundles/artifact-version-for-exports-dep/pom.xml index e4ef18d179d..6d8095c2153 100644 --- a/bundle-plugin-test/test-bundles/artifact-version-for-exports-dep/pom.xml +++ b/bundle-plugin-test/test-bundles/artifact-version-for-exports-dep/pom.xml @@ -8,7 +8,7 @@ com.yahoo.vespa.bundle-plugin test-bundles - 7-SNAPSHOT + 8-SNAPSHOT ../pom.xml artifact-version-for-exports-dep @@ -16,7 +16,7 @@ But version is set to the release version by build scripts before building. Then, the dependent bundle will not find the artifact. Skipping this step for a sub-module seems impossible with the maven-versions-plugin, and cumbersome with factorylib. --> - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/bundle-plugin-test/test-bundles/artifact-version-for-exports/pom.xml b/bundle-plugin-test/test-bundles/artifact-version-for-exports/pom.xml index ede831adfbc..289d2f67eb0 100644 --- a/bundle-plugin-test/test-bundles/artifact-version-for-exports/pom.xml +++ b/bundle-plugin-test/test-bundles/artifact-version-for-exports/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa.bundle-plugin test-bundles - 7-SNAPSHOT + 8-SNAPSHOT ../pom.xml artifact-version-for-exports - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/bundle-plugin-test/test-bundles/main/pom.xml b/bundle-plugin-test/test-bundles/main/pom.xml index 8153d46bcb7..b5f8f7b9a6a 100644 --- a/bundle-plugin-test/test-bundles/main/pom.xml +++ b/bundle-plugin-test/test-bundles/main/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa.bundle-plugin test-bundles - 7-SNAPSHOT + 8-SNAPSHOT ../pom.xml main - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/bundle-plugin-test/test-bundles/pom.xml b/bundle-plugin-test/test-bundles/pom.xml index faddeafc76d..3af10826adc 100644 --- a/bundle-plugin-test/test-bundles/pom.xml +++ b/bundle-plugin-test/test-bundles/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa.bundle-plugin bundle-plugin-test - 7-SNAPSHOT + 8-SNAPSHOT ../pom.xml test-bundles - 7-SNAPSHOT + 8-SNAPSHOT pom diff --git a/bundle-plugin/pom.xml b/bundle-plugin/pom.xml index 7993dfecafd..be5d2d59de2 100644 --- a/bundle-plugin/pom.xml +++ b/bundle-plugin/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml bundle-plugin - 7-SNAPSHOT + 8-SNAPSHOT maven-plugin ${project.artifactId} Maven Plugin for creating OSGi bundles for the JDisc Container. diff --git a/client/pom.xml b/client/pom.xml index 190b0a4a73f..065cb2c4317 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -8,13 +8,13 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml client jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/cloud-tenant-base-dependencies-enforcer/pom.xml b/cloud-tenant-base-dependencies-enforcer/pom.xml index ace3ba946e9..116ba1ba403 100644 --- a/cloud-tenant-base-dependencies-enforcer/pom.xml +++ b/cloud-tenant-base-dependencies-enforcer/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa cloud-tenant-base - 7-SNAPSHOT + 8-SNAPSHOT ../cloud-tenant-base/pom.xml cloud-tenant-base-dependencies-enforcer - 7-SNAPSHOT + 8-SNAPSHOT pom diff --git a/cloud-tenant-base/pom.xml b/cloud-tenant-base/pom.xml index bb4171bd096..64ed23b6c33 100644 --- a/cloud-tenant-base/pom.xml +++ b/cloud-tenant-base/pom.xml @@ -7,7 +7,7 @@ cloud-tenant-base Vespa Cloud tenant base - 7-SNAPSHOT + 8-SNAPSHOT Parent POM for all Vespa Cloud applications. https://github.com/vespa-engine pom @@ -15,7 +15,7 @@ hosted-tenant-base com.yahoo.vespa - 7-SNAPSHOT + 8-SNAPSHOT ../hosted-tenant-base/pom.xml diff --git a/cloud-tenant-cd/pom.xml b/cloud-tenant-cd/pom.xml index ec23337f82b..baccbab54f5 100644 --- a/cloud-tenant-cd/pom.xml +++ b/cloud-tenant-cd/pom.xml @@ -13,7 +13,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent diff --git a/clustercontroller-apps/pom.xml b/clustercontroller-apps/pom.xml index 4b90f3c6ca9..fa0f5c064ad 100644 --- a/clustercontroller-apps/pom.xml +++ b/clustercontroller-apps/pom.xml @@ -5,11 +5,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml clustercontroller-apps - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/clustercontroller-core/pom.xml b/clustercontroller-core/pom.xml index 7a3ccaf61f4..243b69bf1e2 100644 --- a/clustercontroller-core/pom.xml +++ b/clustercontroller-core/pom.xml @@ -5,11 +5,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml clustercontroller-core - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/clustercontroller-reindexer/pom.xml b/clustercontroller-reindexer/pom.xml index f39922e0379..42e746c1bae 100644 --- a/clustercontroller-reindexer/pom.xml +++ b/clustercontroller-reindexer/pom.xml @@ -6,7 +6,7 @@ parent com.yahoo.vespa - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml 4.0.0 diff --git a/clustercontroller-utils/pom.xml b/clustercontroller-utils/pom.xml index bf97dbd79ae..03a368ed667 100644 --- a/clustercontroller-utils/pom.xml +++ b/clustercontroller-utils/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml clustercontroller-utils - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/component/pom.xml b/component/pom.xml index 40837457b17..a4330957069 100755 --- a/component/pom.xml +++ b/component/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml component container-plugin - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/config-application-package/pom.xml b/config-application-package/pom.xml index 869e161f57d..3d471f1c94b 100644 --- a/config-application-package/pom.xml +++ b/config-application-package/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config-application-package container-plugin - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa diff --git a/config-bundle/pom.xml b/config-bundle/pom.xml index e8409bc1bbe..50205f9fe71 100644 --- a/config-bundle/pom.xml +++ b/config-bundle/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config-bundle container-plugin - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa diff --git a/config-class-plugin/pom.xml b/config-class-plugin/pom.xml index 50471514cc0..26dac276ea2 100644 --- a/config-class-plugin/pom.xml +++ b/config-class-plugin/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config-class-plugin maven-plugin - 7-SNAPSHOT + 8-SNAPSHOT config-class-plugin (Vespa ConfigGen Plugin) diff --git a/config-lib/pom.xml b/config-lib/pom.xml index 7c13bd22227..ea72afb568d 100644 --- a/config-lib/pom.xml +++ b/config-lib/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config-lib container-plugin - 7-SNAPSHOT + 8-SNAPSHOT ${project.artifactId} diff --git a/config-model-api/pom.xml b/config-model-api/pom.xml index 3e83a6dfddf..1d28965fa3c 100644 --- a/config-model-api/pom.xml +++ b/config-model-api/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config-model-api - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/config-model-fat/pom.xml b/config-model-fat/pom.xml index 96cafd4ec0f..44880d052b6 100644 --- a/config-model-fat/pom.xml +++ b/config-model-fat/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config-model-fat bundle - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa diff --git a/config-model/pom.xml b/config-model/pom.xml index 7e705cfa0aa..13af9d38263 100644 --- a/config-model/pom.xml +++ b/config-model/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config-model container-plugin - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa diff --git a/config-provisioning/pom.xml b/config-provisioning/pom.xml index c7616b2187a..119931465bf 100644 --- a/config-provisioning/pom.xml +++ b/config-provisioning/pom.xml @@ -5,7 +5,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml diff --git a/config-proxy/pom.xml b/config-proxy/pom.xml index 95cbac62dda..4272cf6617e 100644 --- a/config-proxy/pom.xml +++ b/config-proxy/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config-proxy jar - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/config/pom.xml b/config/pom.xml index f7098bfa6ce..f787a7b0b49 100755 --- a/config/pom.xml +++ b/config/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml config container-plugin - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/config_test/pom.xml b/config_test/pom.xml index b87ac3aed7c..dc35b53510b 100644 --- a/config_test/pom.xml +++ b/config_test/pom.xml @@ -6,7 +6,7 @@ com.yahoo.vespa config_test container-plugin - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/configdefinitions/pom.xml b/configdefinitions/pom.xml index 0f4f1ddbad3..47cc106c789 100644 --- a/configdefinitions/pom.xml +++ b/configdefinitions/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml configdefinitions container-plugin - 7-SNAPSHOT + 8-SNAPSHOT configdefinitions diff --git a/configgen/pom.xml b/configgen/pom.xml index ad8e1672dad..11d6a195bc6 100644 --- a/configgen/pom.xml +++ b/configgen/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml configgen jar - 7-SNAPSHOT + 8-SNAPSHOT configgen Config java code generation from config definition files for Java Vespa components. diff --git a/configserver-flags/pom.xml b/configserver-flags/pom.xml index 51eee97455f..a2a90483e75 100644 --- a/configserver-flags/pom.xml +++ b/configserver-flags/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml configserver-flags - 7-SNAPSHOT + 8-SNAPSHOT container-plugin Config Server Flags. diff --git a/configserver/pom.xml b/configserver/pom.xml index a307772376a..86289a46d19 100644 --- a/configserver/pom.xml +++ b/configserver/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml configserver container-plugin - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/container-search-and-docproc/pom.xml b/container-search-and-docproc/pom.xml index 9be054570e0..036a378da3a 100644 --- a/container-search-and-docproc/pom.xml +++ b/container-search-and-docproc/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml container-search-and-docproc - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/container-search-gui/pom.xml b/container-search-gui/pom.xml index 3f6f7f48921..d0c6706189d 100644 --- a/container-search-gui/pom.xml +++ b/container-search-gui/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml container-search-gui container-plugin - 7-SNAPSHOT + 8-SNAPSHOT com.google.inject diff --git a/container-search/pom.xml b/container-search/pom.xml index adf4e7d9269..e29445f5564 100644 --- a/container-search/pom.xml +++ b/container-search/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml container-search jar - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/container-test/pom.xml b/container-test/pom.xml index c8ead0089d1..91519da6dd3 100644 --- a/container-test/pom.xml +++ b/container-test/pom.xml @@ -10,11 +10,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml container-test - 7-SNAPSHOT + 8-SNAPSHOT jar diff --git a/container/pom.xml b/container/pom.xml index 0b6bef77282..b2a3a1baef8 100644 --- a/container/pom.xml +++ b/container/pom.xml @@ -10,11 +10,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml container - 7-SNAPSHOT + 8-SNAPSHOT jar diff --git a/controller-api/pom.xml b/controller-api/pom.xml index 580809c4181..f7057c93561 100644 --- a/controller-api/pom.xml +++ b/controller-api/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml controller-api container-plugin - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/controller-server/pom.xml b/controller-server/pom.xml index ff7367e03b2..773d63202b6 100644 --- a/controller-server/pom.xml +++ b/controller-server/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml controller-server container-plugin - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/defaults/pom.xml b/defaults/pom.xml index 86872b6d700..ffafc683fd6 100644 --- a/defaults/pom.xml +++ b/defaults/pom.xml @@ -7,13 +7,13 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml com.yahoo.vespa defaults container-plugin - 7-SNAPSHOT + 8-SNAPSHOT defaults Library with the defaults for Vespa. diff --git a/docproc/pom.xml b/docproc/pom.xml index d758606f8b7..e7d8d6e3a3e 100644 --- a/docproc/pom.xml +++ b/docproc/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml docproc jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/docprocs/pom.xml b/docprocs/pom.xml index 7ad13ce83e1..42ae75e36f1 100644 --- a/docprocs/pom.xml +++ b/docprocs/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml docprocs container-plugin - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa diff --git a/document/pom.xml b/document/pom.xml index 06488d799eb..5db432d2447 100644 --- a/document/pom.xml +++ b/document/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml document - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/documentapi-dependencies/pom.xml b/documentapi-dependencies/pom.xml index 7a977a36842..25552700528 100644 --- a/documentapi-dependencies/pom.xml +++ b/documentapi-dependencies/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml documentapi-dependencies pom - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/documentapi/pom.xml b/documentapi/pom.xml index 7d91e246cfe..9b690f345ae 100644 --- a/documentapi/pom.xml +++ b/documentapi/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml documentapi jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/documentgen-test/pom.xml b/documentgen-test/pom.xml index c9c62316464..1898872c1a0 100644 --- a/documentgen-test/pom.xml +++ b/documentgen-test/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml documentgen-test jar - 7-SNAPSHOT + 8-SNAPSHOT documentgen_test Tests for vespa-documentgen-plugin diff --git a/fat-model-dependencies/pom.xml b/fat-model-dependencies/pom.xml index 5c489662842..180a39778a8 100644 --- a/fat-model-dependencies/pom.xml +++ b/fat-model-dependencies/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml fat-model-dependencies pom - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa diff --git a/fileacquirer/pom.xml b/fileacquirer/pom.xml index 1a85849fd98..ed02667b2a0 100644 --- a/fileacquirer/pom.xml +++ b/fileacquirer/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml fileacquirer - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/filedistribution/pom.xml b/filedistribution/pom.xml index 9dca254cebe..7916698b62c 100644 --- a/filedistribution/pom.xml +++ b/filedistribution/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml filedistribution - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/flags/pom.xml b/flags/pom.xml index e853f869228..6eaecc35c47 100644 --- a/flags/pom.xml +++ b/flags/pom.xml @@ -8,13 +8,13 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml flags container-plugin - 7-SNAPSHOT + 8-SNAPSHOT ${project.artifactId} Feature flags diff --git a/fsa/pom.xml b/fsa/pom.xml index db863ba5522..5d18bdb666c 100644 --- a/fsa/pom.xml +++ b/fsa/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml fsa container-plugin - 7-SNAPSHOT + 8-SNAPSHOT This is the FSA library and tools, an implementation of finite state automata (FSA) and related algorithms. diff --git a/hosted-api/pom.xml b/hosted-api/pom.xml index a9d8e7eee46..6f7c6186ece 100644 --- a/hosted-api/pom.xml +++ b/hosted-api/pom.xml @@ -8,7 +8,7 @@ parent com.yahoo.vespa - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml hosted-api diff --git a/hosted-tenant-base/pom.xml b/hosted-tenant-base/pom.xml index 6eaeb508322..7e68f2e1acb 100644 --- a/hosted-tenant-base/pom.xml +++ b/hosted-tenant-base/pom.xml @@ -7,7 +7,7 @@ com.yahoo.vespa hosted-tenant-base - 7-SNAPSHOT + 8-SNAPSHOT Base pom for all tenant base poms Parent POM for all Vespa base poms. https://github.com/vespa-engine diff --git a/hosted-zone-api/pom.xml b/hosted-zone-api/pom.xml index ea3b035618b..87012df8479 100644 --- a/hosted-zone-api/pom.xml +++ b/hosted-zone-api/pom.xml @@ -5,7 +5,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml hosted-zone-api diff --git a/http-client/pom.xml b/http-client/pom.xml index 75e9bdc27cb..49512c09a72 100644 --- a/http-client/pom.xml +++ b/http-client/pom.xml @@ -8,7 +8,7 @@ parent com.yahoo.vespa - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml container-plugin diff --git a/http-utils/pom.xml b/http-utils/pom.xml index 4a84fb820eb..52dac0cfeea 100644 --- a/http-utils/pom.xml +++ b/http-utils/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml http-utils jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/indexinglanguage/pom.xml b/indexinglanguage/pom.xml index 48fa89c428e..040a13efc91 100644 --- a/indexinglanguage/pom.xml +++ b/indexinglanguage/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml indexinglanguage jar - 7-SNAPSHOT + 8-SNAPSHOT indexinglanguage Interpreter for the Indexing Language diff --git a/integration/intellij/pom.xml b/integration/intellij/pom.xml index dfc44ab9dc2..d7146a60f7a 100644 --- a/integration/intellij/pom.xml +++ b/integration/intellij/pom.xml @@ -5,7 +5,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-intellij diff --git a/jaxrs_utils/pom.xml b/jaxrs_utils/pom.xml index 492bc095a57..cb7839bc73d 100644 --- a/jaxrs_utils/pom.xml +++ b/jaxrs_utils/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml jaxrs_utils - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/jdisc-cloud-aws/pom.xml b/jdisc-cloud-aws/pom.xml index 41259a7fb42..5ae3e056309 100644 --- a/jdisc-cloud-aws/pom.xml +++ b/jdisc-cloud-aws/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml jdisc-cloud-aws - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/jdisc-security-filters/pom.xml b/jdisc-security-filters/pom.xml index d27055d592e..dcfb61de3cc 100644 --- a/jdisc-security-filters/pom.xml +++ b/jdisc-security-filters/pom.xml @@ -7,12 +7,12 @@ 4.0.0 jdisc-security-filters container-plugin - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml diff --git a/jdisc_core/pom.xml b/jdisc_core/pom.xml index 8d09ea1198f..3ab469983c5 100644 --- a/jdisc_core/pom.xml +++ b/jdisc_core/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml jdisc_core - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/jdisc_core_test/integration_test/pom.xml b/jdisc_core_test/integration_test/pom.xml index 7aadee990c6..cee12f1b26a 100644 --- a/jdisc_core_test/integration_test/pom.xml +++ b/jdisc_core_test/integration_test/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core integration-test-parent - 7-SNAPSHOT + 8-SNAPSHOT integration_test - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/jdisc_core_test/pom.xml b/jdisc_core_test/pom.xml index 4216c25266e..0cf340e907a 100644 --- a/jdisc_core_test/pom.xml +++ b/jdisc_core_test/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml com.yahoo.vespa.jdisc_core integration-test-parent - 7-SNAPSHOT + 8-SNAPSHOT pom ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/app-a/pom.xml b/jdisc_core_test/test_bundles/app-a/pom.xml index 9b8304284ae..b13b4b699c7 100644 --- a/jdisc_core_test/test_bundles/app-a/pom.xml +++ b/jdisc_core_test/test_bundles/app-a/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT app-a - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/app-b-priv/pom.xml b/jdisc_core_test/test_bundles/app-b-priv/pom.xml index 3b595562718..852f70441cc 100644 --- a/jdisc_core_test/test_bundles/app-b-priv/pom.xml +++ b/jdisc_core_test/test_bundles/app-b-priv/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT app-b-priv - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/app-ca/pom.xml b/jdisc_core_test/test_bundles/app-ca/pom.xml index 6126af80de0..ce2d977c2a5 100644 --- a/jdisc_core_test/test_bundles/app-ca/pom.xml +++ b/jdisc_core_test/test_bundles/app-ca/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT app-ca - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/app-dj/pom.xml b/jdisc_core_test/test_bundles/app-dj/pom.xml index e17020bdd0c..9f6bae624dc 100644 --- a/jdisc_core_test/test_bundles/app-dj/pom.xml +++ b/jdisc_core_test/test_bundles/app-dj/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT app-dj - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/app-ej-priv/pom.xml b/jdisc_core_test/test_bundles/app-ej-priv/pom.xml index 7d55bfbe895..fb05e6bca86 100644 --- a/jdisc_core_test/test_bundles/app-ej-priv/pom.xml +++ b/jdisc_core_test/test_bundles/app-ej-priv/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT app-ej-priv - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/app-f-more/pom.xml b/jdisc_core_test/test_bundles/app-f-more/pom.xml index a488b333092..00fd8977c06 100644 --- a/jdisc_core_test/test_bundles/app-f-more/pom.xml +++ b/jdisc_core_test/test_bundles/app-f-more/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT app-f-more - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/app-g-act/pom.xml b/jdisc_core_test/test_bundles/app-g-act/pom.xml index a8389b8ce33..ea849ad295d 100644 --- a/jdisc_core_test/test_bundles/app-g-act/pom.xml +++ b/jdisc_core_test/test_bundles/app-g-act/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT app-g-act - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/app-h-log/pom.xml b/jdisc_core_test/test_bundles/app-h-log/pom.xml index 99a82c5e9b1..e1e0c2e8de3 100644 --- a/jdisc_core_test/test_bundles/app-h-log/pom.xml +++ b/jdisc_core_test/test_bundles/app-h-log/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT app-h-log - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-a/pom.xml b/jdisc_core_test/test_bundles/cert-a/pom.xml index 68986875b56..17decc78ffd 100644 --- a/jdisc_core_test/test_bundles/cert-a/pom.xml +++ b/jdisc_core_test/test_bundles/cert-a/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-a - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-b/pom.xml b/jdisc_core_test/test_bundles/cert-b/pom.xml index 287d914cebc..587826a64b1 100644 --- a/jdisc_core_test/test_bundles/cert-b/pom.xml +++ b/jdisc_core_test/test_bundles/cert-b/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-b - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-ca/pom.xml b/jdisc_core_test/test_bundles/cert-ca/pom.xml index 32b9b1e58f9..37621a927ef 100644 --- a/jdisc_core_test/test_bundles/cert-ca/pom.xml +++ b/jdisc_core_test/test_bundles/cert-ca/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-ca - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-dc/pom.xml b/jdisc_core_test/test_bundles/cert-dc/pom.xml index 77bb210fc87..114ab11d96d 100644 --- a/jdisc_core_test/test_bundles/cert-dc/pom.xml +++ b/jdisc_core_test/test_bundles/cert-dc/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-dc - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-eab/pom.xml b/jdisc_core_test/test_bundles/cert-eab/pom.xml index 7870603defe..09f432f42dc 100644 --- a/jdisc_core_test/test_bundles/cert-eab/pom.xml +++ b/jdisc_core_test/test_bundles/cert-eab/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-eab - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-fac/pom.xml b/jdisc_core_test/test_bundles/cert-fac/pom.xml index 9bc7c947862..b7beb071edc 100644 --- a/jdisc_core_test/test_bundles/cert-fac/pom.xml +++ b/jdisc_core_test/test_bundles/cert-fac/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-fac - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-gg/pom.xml b/jdisc_core_test/test_bundles/cert-gg/pom.xml index 09c90f2c146..7ecfca57bcc 100644 --- a/jdisc_core_test/test_bundles/cert-gg/pom.xml +++ b/jdisc_core_test/test_bundles/cert-gg/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-gg - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-hi/pom.xml b/jdisc_core_test/test_bundles/cert-hi/pom.xml index b4d66abca2c..82e5d9f1d81 100644 --- a/jdisc_core_test/test_bundles/cert-hi/pom.xml +++ b/jdisc_core_test/test_bundles/cert-hi/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-hi - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-ih/pom.xml b/jdisc_core_test/test_bundles/cert-ih/pom.xml index 5797fdd145b..0d546f96965 100644 --- a/jdisc_core_test/test_bundles/cert-ih/pom.xml +++ b/jdisc_core_test/test_bundles/cert-ih/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-ih - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-j-priv/pom.xml b/jdisc_core_test/test_bundles/cert-j-priv/pom.xml index 65383b2cddb..0d818144820 100644 --- a/jdisc_core_test/test_bundles/cert-j-priv/pom.xml +++ b/jdisc_core_test/test_bundles/cert-j-priv/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-j-priv - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-k-pkgs/pom.xml b/jdisc_core_test/test_bundles/cert-k-pkgs/pom.xml index e9ad347905b..b810c0fb19f 100644 --- a/jdisc_core_test/test_bundles/cert-k-pkgs/pom.xml +++ b/jdisc_core_test/test_bundles/cert-k-pkgs/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-k-pkgs - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-l1-dup/pom.xml b/jdisc_core_test/test_bundles/cert-l1-dup/pom.xml index 3eef44629ab..f48fd1e66f6 100644 --- a/jdisc_core_test/test_bundles/cert-l1-dup/pom.xml +++ b/jdisc_core_test/test_bundles/cert-l1-dup/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-l1-dup - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-l1/pom.xml b/jdisc_core_test/test_bundles/cert-l1/pom.xml index e89eeae449e..afee36532d4 100644 --- a/jdisc_core_test/test_bundles/cert-l1/pom.xml +++ b/jdisc_core_test/test_bundles/cert-l1/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-l1 - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-l2/pom.xml b/jdisc_core_test/test_bundles/cert-l2/pom.xml index b00e1ecaec2..31fe9b1a6f2 100644 --- a/jdisc_core_test/test_bundles/cert-l2/pom.xml +++ b/jdisc_core_test/test_bundles/cert-l2/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-l2 - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-ml-dup/pom.xml b/jdisc_core_test/test_bundles/cert-ml-dup/pom.xml index 021d14a1336..703c1ff73cb 100644 --- a/jdisc_core_test/test_bundles/cert-ml-dup/pom.xml +++ b/jdisc_core_test/test_bundles/cert-ml-dup/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-ml-dup - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-ml/pom.xml b/jdisc_core_test/test_bundles/cert-ml/pom.xml index f3e9013ce97..30e12cc35aa 100644 --- a/jdisc_core_test/test_bundles/cert-ml/pom.xml +++ b/jdisc_core_test/test_bundles/cert-ml/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-ml - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-nac/pom.xml b/jdisc_core_test/test_bundles/cert-nac/pom.xml index fe88e4cdd4f..73e4e62887e 100644 --- a/jdisc_core_test/test_bundles/cert-nac/pom.xml +++ b/jdisc_core_test/test_bundles/cert-nac/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-nac - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-oa-path/pom.xml b/jdisc_core_test/test_bundles/cert-oa-path/pom.xml index cdc16200b11..621822f76eb 100644 --- a/jdisc_core_test/test_bundles/cert-oa-path/pom.xml +++ b/jdisc_core_test/test_bundles/cert-oa-path/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-oa-path - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-p-jar/pom.xml b/jdisc_core_test/test_bundles/cert-p-jar/pom.xml index 1d6fe7bba4c..817bb7d3451 100644 --- a/jdisc_core_test/test_bundles/cert-p-jar/pom.xml +++ b/jdisc_core_test/test_bundles/cert-p-jar/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-p-jar - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-q-frag/pom.xml b/jdisc_core_test/test_bundles/cert-q-frag/pom.xml index 563e4eb60d4..b57d04be877 100644 --- a/jdisc_core_test/test_bundles/cert-q-frag/pom.xml +++ b/jdisc_core_test/test_bundles/cert-q-frag/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-q-frag - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-rq/pom.xml b/jdisc_core_test/test_bundles/cert-rq/pom.xml index 0070ddadeca..6162cdd6075 100644 --- a/jdisc_core_test/test_bundles/cert-rq/pom.xml +++ b/jdisc_core_test/test_bundles/cert-rq/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-rq - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-s-act/pom.xml b/jdisc_core_test/test_bundles/cert-s-act/pom.xml index ed34708dc8a..e7350f70665 100644 --- a/jdisc_core_test/test_bundles/cert-s-act/pom.xml +++ b/jdisc_core_test/test_bundles/cert-s-act/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-s-act - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-tp/pom.xml b/jdisc_core_test/test_bundles/cert-tp/pom.xml index b657f36c695..6618b22efdd 100644 --- a/jdisc_core_test/test_bundles/cert-tp/pom.xml +++ b/jdisc_core_test/test_bundles/cert-tp/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-tp - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/cert-us/pom.xml b/jdisc_core_test/test_bundles/cert-us/pom.xml index 731b5af098f..b4306daa5e8 100644 --- a/jdisc_core_test/test_bundles/cert-us/pom.xml +++ b/jdisc_core_test/test_bundles/cert-us/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT cert-us - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/my-bundle-activator/pom.xml b/jdisc_core_test/test_bundles/my-bundle-activator/pom.xml index 5daef993b4a..deb8ddb80fc 100644 --- a/jdisc_core_test/test_bundles/my-bundle-activator/pom.xml +++ b/jdisc_core_test/test_bundles/my-bundle-activator/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT my-bundle-activator - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/my-guice-module/pom.xml b/jdisc_core_test/test_bundles/my-guice-module/pom.xml index 296ca98acb8..be8f22f3c40 100644 --- a/jdisc_core_test/test_bundles/my-guice-module/pom.xml +++ b/jdisc_core_test/test_bundles/my-guice-module/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT my-guice-module - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/my-server-provider/pom.xml b/jdisc_core_test/test_bundles/my-server-provider/pom.xml index 3fc2ed2a755..b5b78191010 100644 --- a/jdisc_core_test/test_bundles/my-server-provider/pom.xml +++ b/jdisc_core_test/test_bundles/my-server-provider/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core test_bundles - 7-SNAPSHOT + 8-SNAPSHOT my-server-provider - 7-SNAPSHOT + 8-SNAPSHOT bundle ${project.artifactId} diff --git a/jdisc_core_test/test_bundles/pom.xml b/jdisc_core_test/test_bundles/pom.xml index ff3c14ee354..63f31c1963b 100644 --- a/jdisc_core_test/test_bundles/pom.xml +++ b/jdisc_core_test/test_bundles/pom.xml @@ -8,10 +8,10 @@ com.yahoo.vespa.jdisc_core integration-test-parent - 7-SNAPSHOT + 8-SNAPSHOT test_bundles - 7-SNAPSHOT + 8-SNAPSHOT pom ${project.artifactId} diff --git a/jdisc_jetty/pom.xml b/jdisc_jetty/pom.xml index 76140f67416..dc3976098fa 100644 --- a/jdisc_jetty/pom.xml +++ b/jdisc_jetty/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml jdisc_jetty - 7-SNAPSHOT + 8-SNAPSHOT jar diff --git a/jrt/pom.xml b/jrt/pom.xml index fea45602e58..c4fb87d24c4 100644 --- a/jrt/pom.xml +++ b/jrt/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml jrt container-plugin - 7-SNAPSHOT + 8-SNAPSHOT jrt diff --git a/linguistics-components/pom.xml b/linguistics-components/pom.xml index aa68f6590cb..eae50c778b5 100644 --- a/linguistics-components/pom.xml +++ b/linguistics-components/pom.xml @@ -7,12 +7,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml linguistics-components container-plugin - 7-SNAPSHOT + 8-SNAPSHOT com.google.protobuf diff --git a/linguistics/pom.xml b/linguistics/pom.xml index d0314622fcf..763dff1d653 100644 --- a/linguistics/pom.xml +++ b/linguistics/pom.xml @@ -7,12 +7,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml linguistics container-plugin - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/logd/pom.xml b/logd/pom.xml index 2baf77e5aa3..4eae0afc77b 100644 --- a/logd/pom.xml +++ b/logd/pom.xml @@ -7,11 +7,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml logd - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/logserver/pom.xml b/logserver/pom.xml index 2d5eecd01ce..61b777ad86b 100644 --- a/logserver/pom.xml +++ b/logserver/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml logserver jar - 7-SNAPSHOT + 8-SNAPSHOT logserver Log server. diff --git a/maven-plugins/pom.xml b/maven-plugins/pom.xml index 806015c3100..6f8b44540e2 100644 --- a/maven-plugins/pom.xml +++ b/maven-plugins/pom.xml @@ -5,13 +5,13 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml com.yahoo.vespa maven-plugins pom - 7-SNAPSHOT + 8-SNAPSHOT Parent artifact for Vespa maven plugins. http://yahoo.github.io/vespa diff --git a/messagebus/pom.xml b/messagebus/pom.xml index d26e9b32909..512c001e3ff 100644 --- a/messagebus/pom.xml +++ b/messagebus/pom.xml @@ -7,11 +7,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml messagebus - 7-SNAPSHOT + 8-SNAPSHOT jar diff --git a/metrics-proxy/pom.xml b/metrics-proxy/pom.xml index b68b329b603..bbb1c14dfe7 100644 --- a/metrics-proxy/pom.xml +++ b/metrics-proxy/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml metrics-proxy container-plugin - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/metrics/pom.xml b/metrics/pom.xml index b0482e26697..2cf5ccc57d1 100644 --- a/metrics/pom.xml +++ b/metrics/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml metrics jar - 7-SNAPSHOT + 8-SNAPSHOT metrics diff --git a/model-evaluation/pom.xml b/model-evaluation/pom.xml index 4da293a1aab..9188ff9af80 100644 --- a/model-evaluation/pom.xml +++ b/model-evaluation/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml model-evaluation - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/model-integration/pom.xml b/model-integration/pom.xml index d064a3ff709..7d3ab3f7a5f 100644 --- a/model-integration/pom.xml +++ b/model-integration/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml model-integration - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/node-admin/pom.xml b/node-admin/pom.xml index ff1e159de0d..ae7e6ac2bce 100644 --- a/node-admin/pom.xml +++ b/node-admin/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml node-admin - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/node-repository/pom.xml b/node-repository/pom.xml index 60aa0a83107..52be67024d0 100644 --- a/node-repository/pom.xml +++ b/node-repository/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml node-repository - 7-SNAPSHOT + 8-SNAPSHOT container-plugin Keeps track of node assignment in a multi-application setup. diff --git a/orchestrator-restapi/pom.xml b/orchestrator-restapi/pom.xml index da40a1a50a1..156e9367760 100644 --- a/orchestrator-restapi/pom.xml +++ b/orchestrator-restapi/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml orchestrator-restapi - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/orchestrator/pom.xml b/orchestrator/pom.xml index 3d9c45c9ff6..3f8d2bb83db 100644 --- a/orchestrator/pom.xml +++ b/orchestrator/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml orchestrator - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/parent/pom.xml b/parent/pom.xml index 976a74ec152..9709c55d8c6 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -4,7 +4,7 @@ 4.0.0 parent pom - 7-SNAPSHOT + 8-SNAPSHOT parent Parent artifact for all Vespa maven projects. https://github.com/vespa-engine @@ -12,7 +12,7 @@ com.yahoo.vespa container-dependency-versions - 7-SNAPSHOT + 8-SNAPSHOT ../container-dependency-versions/pom.xml diff --git a/pom.xml b/pom.xml index 7900cdac08e..3a41ee3b1ec 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.yahoo.vespa vespa pom - 7-SNAPSHOT + 8-SNAPSHOT Aggregator pom for vespa. https://github.com/vespa-engine diff --git a/predicate-search-core/pom.xml b/predicate-search-core/pom.xml index 733501122bf..4951b3d40f1 100644 --- a/predicate-search-core/pom.xml +++ b/predicate-search-core/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml predicate-search-core - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/predicate-search/pom.xml b/predicate-search/pom.xml index 83efe9d9754..75c9350707c 100644 --- a/predicate-search/pom.xml +++ b/predicate-search/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml predicate-search - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/provided-dependencies/pom.xml b/provided-dependencies/pom.xml index 562db6d4f1f..da7cc007053 100755 --- a/provided-dependencies/pom.xml +++ b/provided-dependencies/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml provided-dependencies jar - 7-SNAPSHOT + 8-SNAPSHOT Dependencies that are installed and should not be included in artifacts with dependencies. diff --git a/routing-generator/pom.xml b/routing-generator/pom.xml index 09a5b206a08..ee5e511c045 100644 --- a/routing-generator/pom.xml +++ b/routing-generator/pom.xml @@ -6,14 +6,14 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml com.yahoo.vespa routing-generator container-plugin - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/searchcore/pom.xml b/searchcore/pom.xml index 27b0e55c781..46b576921cf 100644 --- a/searchcore/pom.xml +++ b/searchcore/pom.xml @@ -8,12 +8,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml searchcore jar - 7-SNAPSHOT + 8-SNAPSHOT ${project.artifactId} diff --git a/searchlib/pom.xml b/searchlib/pom.xml index 69bc88b18f3..e1e61c954b9 100644 --- a/searchlib/pom.xml +++ b/searchlib/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml searchlib container-plugin - 7-SNAPSHOT + 8-SNAPSHOT searchlib Search library functions. diff --git a/searchsummary/pom.xml b/searchsummary/pom.xml index 2cfe3ef632f..d7501d19618 100644 --- a/searchsummary/pom.xml +++ b/searchsummary/pom.xml @@ -7,11 +7,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml searchsummary - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/security-tools/pom.xml b/security-tools/pom.xml index 424b5002d1d..7f248c185a2 100644 --- a/security-tools/pom.xml +++ b/security-tools/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml security-tools jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/security-utils/pom.xml b/security-utils/pom.xml index ac856dff6c3..d4b4bc8d0f6 100644 --- a/security-utils/pom.xml +++ b/security-utils/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml security-utils bundle - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/service-monitor/pom.xml b/service-monitor/pom.xml index 067ea451e35..6a46838a0ce 100644 --- a/service-monitor/pom.xml +++ b/service-monitor/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml service-monitor container-plugin - 7-SNAPSHOT + 8-SNAPSHOT ${project.artifactId} Service monitor component for hosted vespa. diff --git a/socket_test/pom.xml b/socket_test/pom.xml index 8e8797564fe..f68b04d01c8 100644 --- a/socket_test/pom.xml +++ b/socket_test/pom.xml @@ -7,11 +7,11 @@ 4.0.0 com.yahoo.vespa socket_test - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml jar diff --git a/standalone-container/pom.xml b/standalone-container/pom.xml index ffdfaf469a2..86cad2ad012 100644 --- a/standalone-container/pom.xml +++ b/standalone-container/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml standalone-container - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/storage/pom.xml b/storage/pom.xml index 74854da2f3f..3d057b7b928 100644 --- a/storage/pom.xml +++ b/storage/pom.xml @@ -7,11 +7,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml storage - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/streamingvisitors/pom.xml b/streamingvisitors/pom.xml index 2cc777be593..dfc5e7a0b10 100644 --- a/streamingvisitors/pom.xml +++ b/streamingvisitors/pom.xml @@ -7,11 +7,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vsm - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/tenant-base/pom.xml b/tenant-base/pom.xml index 3a15b9be142..1d0d8b6f426 100644 --- a/tenant-base/pom.xml +++ b/tenant-base/pom.xml @@ -7,7 +7,7 @@ com.yahoo.vespa tenant-base - 7-SNAPSHOT + 8-SNAPSHOT Hosted Vespa tenant base Parent POM for all hosted Vespa applications. https://github.com/vespa-engine diff --git a/tenant-cd-api/pom.xml b/tenant-cd-api/pom.xml index a43c7f96a47..f8411cc74d1 100644 --- a/tenant-cd-api/pom.xml +++ b/tenant-cd-api/pom.xml @@ -15,7 +15,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent diff --git a/tenant-cd-commons/pom.xml b/tenant-cd-commons/pom.xml index 0ada43bca0b..92347a96f31 100644 --- a/tenant-cd-commons/pom.xml +++ b/tenant-cd-commons/pom.xml @@ -12,7 +12,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent diff --git a/testutil/pom.xml b/testutil/pom.xml index 9df445e8d9f..5c6aa1881f7 100644 --- a/testutil/pom.xml +++ b/testutil/pom.xml @@ -6,12 +6,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml testutil jar - 7-SNAPSHOT + 8-SNAPSHOT ${project.artifactId} Library of useful Hamcrest matchers. diff --git a/vdslib/pom.xml b/vdslib/pom.xml index 0a6eae7ec3e..b4825c63ae9 100644 --- a/vdslib/pom.xml +++ b/vdslib/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vdslib container-plugin - 7-SNAPSHOT + 8-SNAPSHOT vdslib diff --git a/vespa-3party-bundles/pom.xml b/vespa-3party-bundles/pom.xml index efa4edf89b4..b1ed6457c94 100644 --- a/vespa-3party-bundles/pom.xml +++ b/vespa-3party-bundles/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-3party-bundles - 7-SNAPSHOT + 8-SNAPSHOT pom diff --git a/vespa-application-maven-plugin/pom.xml b/vespa-application-maven-plugin/pom.xml index 99248fb0907..d2d960f6112 100644 --- a/vespa-application-maven-plugin/pom.xml +++ b/vespa-application-maven-plugin/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-application-maven-plugin - 7-SNAPSHOT + 8-SNAPSHOT maven-plugin Maven Plugin for assembling a vespa application package diff --git a/vespa-athenz/pom.xml b/vespa-athenz/pom.xml index 5a7cb97205e..580910799c1 100644 --- a/vespa-athenz/pom.xml +++ b/vespa-athenz/pom.xml @@ -7,12 +7,12 @@ 4.0.0 vespa-athenz container-plugin - 7-SNAPSHOT + 8-SNAPSHOT com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml diff --git a/vespa-documentgen-plugin/pom.xml b/vespa-documentgen-plugin/pom.xml index f3d94fa809d..f3357d64e27 100644 --- a/vespa-documentgen-plugin/pom.xml +++ b/vespa-documentgen-plugin/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-documentgen-plugin maven-plugin - 7-SNAPSHOT + 8-SNAPSHOT Vespa DocumentGen Plugin diff --git a/vespa-feed-client-api/pom.xml b/vespa-feed-client-api/pom.xml index 64b71ae6fb1..5509c339eee 100644 --- a/vespa-feed-client-api/pom.xml +++ b/vespa-feed-client-api/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-feed-client-api jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/vespa-feed-client-cli/pom.xml b/vespa-feed-client-cli/pom.xml index 04f9e308cfa..46679906fc4 100644 --- a/vespa-feed-client-cli/pom.xml +++ b/vespa-feed-client-cli/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-feed-client-cli jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/vespa-feed-client/pom.xml b/vespa-feed-client/pom.xml index a7c4ab0a13c..536637bdce2 100644 --- a/vespa-feed-client/pom.xml +++ b/vespa-feed-client/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-feed-client jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/vespa-hadoop/pom.xml b/vespa-hadoop/pom.xml index 1dde2d58610..8060a2d67a1 100644 --- a/vespa-hadoop/pom.xml +++ b/vespa-hadoop/pom.xml @@ -7,11 +7,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-hadoop - 7-SNAPSHOT + 8-SNAPSHOT ${project.artifactId} Integration tools between Vespa and Hadoop diff --git a/vespa-maven-plugin/pom.xml b/vespa-maven-plugin/pom.xml index 5984c6a1324..8f46e5ff35f 100644 --- a/vespa-maven-plugin/pom.xml +++ b/vespa-maven-plugin/pom.xml @@ -7,7 +7,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa-maven-plugin diff --git a/vespa-osgi-testrunner/pom.xml b/vespa-osgi-testrunner/pom.xml index 03de830e658..c79a8ca7de7 100644 --- a/vespa-osgi-testrunner/pom.xml +++ b/vespa-osgi-testrunner/pom.xml @@ -6,7 +6,7 @@ parent com.yahoo.vespa - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml 4.0.0 diff --git a/vespa-testrunner-components/pom.xml b/vespa-testrunner-components/pom.xml index 4b4b0cfa92c..332a0eaa82d 100644 --- a/vespa-testrunner-components/pom.xml +++ b/vespa-testrunner-components/pom.xml @@ -11,7 +11,7 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml diff --git a/vespa_feed_perf/pom.xml b/vespa_feed_perf/pom.xml index 31fae41a357..a570cb69c36 100644 --- a/vespa_feed_perf/pom.xml +++ b/vespa_feed_perf/pom.xml @@ -12,11 +12,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespa_feed_perf - 7-SNAPSHOT + 8-SNAPSHOT jar ${project.artifactId} diff --git a/vespaclient-container-plugin/pom.xml b/vespaclient-container-plugin/pom.xml index d7b36e39c94..5c3a04beeb8 100644 --- a/vespaclient-container-plugin/pom.xml +++ b/vespaclient-container-plugin/pom.xml @@ -8,11 +8,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespaclient-container-plugin - 7-SNAPSHOT + 8-SNAPSHOT container-plugin diff --git a/vespaclient-core/pom.xml b/vespaclient-core/pom.xml index 8f2865a22cf..5afc2b57868 100644 --- a/vespaclient-core/pom.xml +++ b/vespaclient-core/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespaclient-core - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/vespaclient-java/pom.xml b/vespaclient-java/pom.xml index 2d80d441438..8323890ca2b 100644 --- a/vespaclient-java/pom.xml +++ b/vespaclient-java/pom.xml @@ -6,11 +6,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespaclient-java - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/vespajlib/pom.xml b/vespajlib/pom.xml index ed6ae3678f4..c4d100aa10c 100644 --- a/vespajlib/pom.xml +++ b/vespajlib/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespajlib container-plugin - 7-SNAPSHOT + 8-SNAPSHOT Library for use in Java components of Vespa. Shared code which do not fit anywhere else. diff --git a/vespalog/pom.xml b/vespalog/pom.xml index 4ced763f13f..c18a319adac 100644 --- a/vespalog/pom.xml +++ b/vespalog/pom.xml @@ -5,11 +5,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml vespalog - 7-SNAPSHOT + 8-SNAPSHOT Vespa Log container-plugin diff --git a/yolean/pom.xml b/yolean/pom.xml index 68313e3e1a8..a767e6dfcdd 100644 --- a/yolean/pom.xml +++ b/yolean/pom.xml @@ -5,11 +5,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml yolean - 7-SNAPSHOT + 8-SNAPSHOT container-plugin ${project.artifactId} diff --git a/zkfacade/pom.xml b/zkfacade/pom.xml index a25f4a01e55..0360b9ce91f 100644 --- a/zkfacade/pom.xml +++ b/zkfacade/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml zkfacade container-plugin - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/zookeeper-client-common/pom.xml b/zookeeper-client-common/pom.xml index 7e23e0cb1c8..5eafd040e79 100644 --- a/zookeeper-client-common/pom.xml +++ b/zookeeper-client-common/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml zookeeper-client-common jar - 7-SNAPSHOT + 8-SNAPSHOT diff --git a/zookeeper-command-line-client/pom.xml b/zookeeper-command-line-client/pom.xml index 5dfc5ab22be..a0c268e0f95 100644 --- a/zookeeper-command-line-client/pom.xml +++ b/zookeeper-command-line-client/pom.xml @@ -5,11 +5,11 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml zookeeper-command-line-client - 7-SNAPSHOT + 8-SNAPSHOT org.apache.zookeeper diff --git a/zookeeper-server/pom.xml b/zookeeper-server/pom.xml index 06bb3a131af..b9cc4478bc2 100644 --- a/zookeeper-server/pom.xml +++ b/zookeeper-server/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa parent - 7-SNAPSHOT + 8-SNAPSHOT ../parent/pom.xml zookeeper-server-parent pom - 7-SNAPSHOT + 8-SNAPSHOT zookeeper-server-common zookeeper-server diff --git a/zookeeper-server/zookeeper-server-3.7.1/pom.xml b/zookeeper-server/zookeeper-server-3.7.1/pom.xml index ed677ef8601..ea0e61075f1 100644 --- a/zookeeper-server/zookeeper-server-3.7.1/pom.xml +++ b/zookeeper-server/zookeeper-server-3.7.1/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa zookeeper-server-parent - 7-SNAPSHOT + 8-SNAPSHOT ../pom.xml zookeeper-server-3.7.1 container-plugin - 7-SNAPSHOT + 8-SNAPSHOT 3.7.1 diff --git a/zookeeper-server/zookeeper-server-common/pom.xml b/zookeeper-server/zookeeper-server-common/pom.xml index 82494e7bd14..db377fa8e8f 100644 --- a/zookeeper-server/zookeeper-server-common/pom.xml +++ b/zookeeper-server/zookeeper-server-common/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa zookeeper-server-parent - 7-SNAPSHOT + 8-SNAPSHOT ../pom.xml zookeeper-server-common container-plugin - 7-SNAPSHOT + 8-SNAPSHOT junit diff --git a/zookeeper-server/zookeeper-server/pom.xml b/zookeeper-server/zookeeper-server/pom.xml index 01cd666d5ab..72cb21b2362 100644 --- a/zookeeper-server/zookeeper-server/pom.xml +++ b/zookeeper-server/zookeeper-server/pom.xml @@ -5,12 +5,12 @@ com.yahoo.vespa zookeeper-server-parent - 7-SNAPSHOT + 8-SNAPSHOT ../pom.xml zookeeper-server-3.7.0 container-plugin - 7-SNAPSHOT + 8-SNAPSHOT 3.7.0 -- cgit v1.2.3