This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new bc60271 CAMEL-15525: fix incorrect main class name (#4204) bc60271 is described below commit bc60271522ea21f2679f7b2c3ae8b03ca060095e Author: Otavio Rodolfo Piske <orpi...@users.noreply.github.com> AuthorDate: Sat Sep 12 10:50:57 2020 +0200 CAMEL-15525: fix incorrect main class name (#4204) --- .../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>