You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2020/09/12 08:51:19 UTC

[camel] branch master updated: CAMEL-15525: fix incorrect main class name (#4204)

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 <or...@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>