diff --git a/archetypes/archetypes/src/main/archetype/common/docker.xml b/archetypes/archetypes/src/main/archetype/common/docker.xml index 5ed2e9376c8..9c612980b9b 100644 --- a/archetypes/archetypes/src/main/archetype/common/docker.xml +++ b/archetypes/archetypes/src/main/archetype/common/docker.xml @@ -62,6 +62,9 @@ + + com.fasterxml.jackson.core + ADD pom.xml . diff --git a/archetypes/archetypes/src/main/archetype/common/files/src/main/resources/META-INF/native-image/groupid/artifactid/native-image.properties.mustache b/archetypes/archetypes/src/main/archetype/common/files/src/main/resources/META-INF/native-image/groupid/artifactid/native-image.properties.mustache index 90895d70f0a..82fc6ec198e 100644 --- a/archetypes/archetypes/src/main/archetype/common/files/src/main/resources/META-INF/native-image/groupid/artifactid/native-image.properties.mustache +++ b/archetypes/archetypes/src/main/archetype/common/files/src/main/resources/META-INF/native-image/groupid/artifactid/native-image.properties.mustache @@ -1 +1 @@ -Args=--initialize-at-build-time={{package}} \ No newline at end of file +Args=--initialize-at-build-time={{package}}{{#native-image-initialize-at-build-time}},{{.}}{{/native-image-initialize-at-build-time}} \ No newline at end of file diff --git a/etc/scripts/test-archetypes-executable.sh b/etc/scripts/test-archetypes-executable.sh index 78bb3973dbd..cb1073dea7d 100755 --- a/etc/scripts/test-archetypes-executable.sh +++ b/etc/scripts/test-archetypes-executable.sh @@ -47,7 +47,6 @@ function testApplication() { sleep 5 RESULT=$(curl -v http://localhost:8080/simple-greet) - echo "Greet response: ${RESULT}" kill -9 ${PID} if [[ ! "$RESULT" =~ "Hello World" ]]; then diff --git a/etc/scripts/test-quickstarts.sh b/etc/scripts/test-quickstarts.sh index 7f616effcf3..978d460b96b 100755 --- a/etc/scripts/test-quickstarts.sh +++ b/etc/scripts/test-quickstarts.sh @@ -44,7 +44,6 @@ function testApplication() { PID=$! sleep 5 RESULT=$(curl -v http://localhost:8080/greet) - echo "Greet response: ${RESULT}" echo "Stopping process: ${1}" kill -9 ${PID} if [[ ! "$RESULT" =~ "Hello World" ]]; then