This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/master by this push: new e0cfce2 Fix #713 Revisit the Quarkus native image mojo options generated by create-extension e0cfce2 is described below commit e0cfce2532df123bd216e7c6c40507217bf4980f Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Fri Feb 14 11:22:58 2020 +0100 Fix #713 Revisit the Quarkus native image mojo options generated by create-extension --- .../integration-test-pom.xml | 25 +++------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/tooling/create-extension-templates/integration-test-pom.xml b/tooling/create-extension-templates/integration-test-pom.xml index 834259c..52f7f36 100644 --- a/tooling/create-extension-templates/integration-test-pom.xml +++ b/tooling/create-extension-templates/integration-test-pom.xml @@ -78,6 +78,9 @@ <name>native</name> </property> </activation> + <properties> + <quarkus.package.type>native</quarkus.package.type> + </properties> <build> <plugins> <plugin> @@ -97,28 +100,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>io.quarkus</groupId> - <artifactId>quarkus-maven-plugin</artifactId> - <executions> - <execution> - <id>native-image</id> - <goals> - <goal>native-image</goal> - </goals> - <configuration> - <reportErrorsAtRuntime>false</reportErrorsAtRuntime> - <cleanupServer>true</cleanupServer> - <enableHttpsUrlHandler>true</enableHttpsUrlHandler> - <enableServer>false</enableServer> - <dumpProxies>false</dumpProxies> - <graalvmHome>${graalvmHome}</graalvmHome> - <enableAllSecurityServices>true</enableAllSecurityServices> - <disableReports>true</disableReports> - </configuration> - </execution> - </executions> - </plugin> </plugins> </build> </profile>