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 09:32:26 UTC

[camel] branch camel-3.4.x updated: CAMEL-15525: fix incorrect main class name (#4204) (#4205)

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