From 28ebbd0e3e76f937e7bfe1aee82946d5760bef6b Mon Sep 17 00:00:00 2001 From: Joe DiPol Date: Thu, 9 Jul 2020 13:47:58 -0700 Subject: [PATCH] Add -Declipselink.weave.skip to quickstart Dockerfiles (#2146) --- .../quickstart-mp/src/main/resources/Dockerfile.jlink.mustache | 2 +- archetypes/quickstart-mp/src/main/resources/Dockerfile.mustache | 2 +- .../quickstart-mp/src/main/resources/Dockerfile.native.mustache | 2 +- .../quickstart-se/src/main/resources/Dockerfile.jlink.mustache | 2 +- archetypes/quickstart-se/src/main/resources/Dockerfile.mustache | 2 +- .../quickstart-se/src/main/resources/Dockerfile.native.mustache | 2 +- examples/quickstarts/helidon-quickstart-mp/Dockerfile | 2 +- examples/quickstarts/helidon-quickstart-mp/Dockerfile.jlink | 2 +- examples/quickstarts/helidon-quickstart-mp/Dockerfile.native | 2 +- examples/quickstarts/helidon-quickstart-se/Dockerfile | 2 +- examples/quickstarts/helidon-quickstart-se/Dockerfile.jlink | 2 +- examples/quickstarts/helidon-quickstart-se/Dockerfile.native | 2 +- .../quickstarts/helidon-standalone-quickstart-mp/Dockerfile | 2 +- .../helidon-standalone-quickstart-mp/Dockerfile.jlink | 2 +- .../helidon-standalone-quickstart-mp/Dockerfile.native | 2 +- .../quickstarts/helidon-standalone-quickstart-se/Dockerfile | 2 +- .../helidon-standalone-quickstart-se/Dockerfile.jlink | 2 +- .../helidon-standalone-quickstart-se/Dockerfile.native | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/archetypes/quickstart-mp/src/main/resources/Dockerfile.jlink.mustache b/archetypes/quickstart-mp/src/main/resources/Dockerfile.jlink.mustache index 5329952f846..6b6229dba35 100644 --- a/archetypes/quickstart-mp/src/main/resources/Dockerfile.jlink.mustache +++ b/archetypes/quickstart-mp/src/main/resources/Dockerfile.jlink.mustache @@ -8,7 +8,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build to create the custom Java Runtime Image # Incremental docker builds will resume here when you change sources diff --git a/archetypes/quickstart-mp/src/main/resources/Dockerfile.mustache b/archetypes/quickstart-mp/src/main/resources/Dockerfile.mustache index 351c8d6b28c..05268e627fd 100644 --- a/archetypes/quickstart-mp/src/main/resources/Dockerfile.mustache +++ b/archetypes/quickstart-mp/src/main/resources/Dockerfile.mustache @@ -8,7 +8,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/archetypes/quickstart-mp/src/main/resources/Dockerfile.native.mustache b/archetypes/quickstart-mp/src/main/resources/Dockerfile.native.mustache index b80360a11a4..961c5b2a457 100644 --- a/archetypes/quickstart-mp/src/main/resources/Dockerfile.native.mustache +++ b/archetypes/quickstart-mp/src/main/resources/Dockerfile.native.mustache @@ -8,7 +8,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip +RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/archetypes/quickstart-se/src/main/resources/Dockerfile.jlink.mustache b/archetypes/quickstart-se/src/main/resources/Dockerfile.jlink.mustache index 5329952f846..6b6229dba35 100644 --- a/archetypes/quickstart-se/src/main/resources/Dockerfile.jlink.mustache +++ b/archetypes/quickstart-se/src/main/resources/Dockerfile.jlink.mustache @@ -8,7 +8,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build to create the custom Java Runtime Image # Incremental docker builds will resume here when you change sources diff --git a/archetypes/quickstart-se/src/main/resources/Dockerfile.mustache b/archetypes/quickstart-se/src/main/resources/Dockerfile.mustache index 280bc3863b9..43078fdda13 100644 --- a/archetypes/quickstart-se/src/main/resources/Dockerfile.mustache +++ b/archetypes/quickstart-se/src/main/resources/Dockerfile.mustache @@ -8,7 +8,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/archetypes/quickstart-se/src/main/resources/Dockerfile.native.mustache b/archetypes/quickstart-se/src/main/resources/Dockerfile.native.mustache index 18b4a6f1e66..8f3ffd5c349 100644 --- a/archetypes/quickstart-se/src/main/resources/Dockerfile.native.mustache +++ b/archetypes/quickstart-se/src/main/resources/Dockerfile.native.mustache @@ -8,7 +8,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip +RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-quickstart-mp/Dockerfile b/examples/quickstarts/helidon-quickstart-mp/Dockerfile index 20bff538584..3b79fd9b765 100644 --- a/examples/quickstarts/helidon-quickstart-mp/Dockerfile +++ b/examples/quickstarts/helidon-quickstart-mp/Dockerfile @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-quickstart-mp/Dockerfile.jlink b/examples/quickstarts/helidon-quickstart-mp/Dockerfile.jlink index d4dd3c62188..beecd5597e8 100644 --- a/examples/quickstarts/helidon-quickstart-mp/Dockerfile.jlink +++ b/examples/quickstarts/helidon-quickstart-mp/Dockerfile.jlink @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build to create the custom Java Runtime Image # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-quickstart-mp/Dockerfile.native b/examples/quickstarts/helidon-quickstart-mp/Dockerfile.native index f72ceab2b4b..cb72828cde3 100644 --- a/examples/quickstarts/helidon-quickstart-mp/Dockerfile.native +++ b/examples/quickstarts/helidon-quickstart-mp/Dockerfile.native @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip +RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-quickstart-se/Dockerfile b/examples/quickstarts/helidon-quickstart-se/Dockerfile index 55f3326befb..80b7f68dbfa 100644 --- a/examples/quickstarts/helidon-quickstart-se/Dockerfile +++ b/examples/quickstarts/helidon-quickstart-se/Dockerfile @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-quickstart-se/Dockerfile.jlink b/examples/quickstarts/helidon-quickstart-se/Dockerfile.jlink index a0b430b6ef7..2aaa276c547 100644 --- a/examples/quickstarts/helidon-quickstart-se/Dockerfile.jlink +++ b/examples/quickstarts/helidon-quickstart-se/Dockerfile.jlink @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build to create the custom Java Runtime Image # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-quickstart-se/Dockerfile.native b/examples/quickstarts/helidon-quickstart-se/Dockerfile.native index a33f937fa68..c47ca1ea21a 100644 --- a/examples/quickstarts/helidon-quickstart-se/Dockerfile.native +++ b/examples/quickstarts/helidon-quickstart-se/Dockerfile.native @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip +RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile b/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile index 7627089be89..27911090101 100644 --- a/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile +++ b/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.jlink b/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.jlink index d4dd3c62188..beecd5597e8 100644 --- a/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.jlink +++ b/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.jlink @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build to create the custom Java Runtime Image # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.native b/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.native index 4e732c0d7ba..a8571f309c9 100644 --- a/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.native +++ b/examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.native @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip +RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile b/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile index fd24235c883..7e9775dc909 100644 --- a/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile +++ b/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile.jlink b/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile.jlink index a0b430b6ef7..2aaa276c547 100644 --- a/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile.jlink +++ b/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile.jlink @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Dmaven.test.skip +RUN mvn package -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build to create the custom Java Runtime Image # Incremental docker builds will resume here when you change sources diff --git a/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile.native b/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile.native index a8ac81d8365..417aa627b19 100644 --- a/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile.native +++ b/examples/quickstarts/helidon-standalone-quickstart-se/Dockerfile.native @@ -23,7 +23,7 @@ WORKDIR /helidon # Incremental docker builds will always resume after that, unless you update # the pom ADD pom.xml . -RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip +RUN mvn package -Pnative-image -Dnative.image.skip -Dmaven.test.skip -Declipselink.weave.skip # Do the Maven build! # Incremental docker builds will resume here when you change sources