This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch camel-3.4.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-3.4.x by this push: new 54432e1 CAMEL-15525: fix incorrect main class name (#4204) (#4205) 54432e1 is described below commit 54432e12136458ae7bcff01133a43ad806df7ef1 Author: Otavio Rodolfo Piske <orpi...@users.noreply.github.com> AuthorDate: Sat Sep 12 11:32:04 2020 +0200 CAMEL-15525: fix incorrect main class name (#4204) (#4205) --- .../camel-archetype-java/src/main/resources/archetype-resources/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml b/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml index d488658..484cb4c 100644 --- a/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml +++ b/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml @@ -102,7 +102,7 @@ <version>${camel-version}</version> <configuration> <logClasspath>true</logClasspath> - <mainClass>${package}.MyApplication</mainClass> + <mainClass>${package}.MainApp</mainClass> </configuration> </plugin>