You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/07/12 12:43:20 UTC

[GitHub] [camel] amdmdi opened a new pull request #3995: Fix minor issues in camel maven archetypes

amdmdi opened a new pull request #3995:
URL: https://github.com/apache/camel/pull/3995


   This is related to CAMEL-15043
   
   **camel-archetype-api-component**
     - Add `camel-test-junit5` test dependency  to fix build failures
     in generated test sources
     - Remove deprecated `log4j.version` property
     - The generated component was broken due to a missing argument in
       constuctor of the PropertiesHelper class due to a change in the
       ApiMethodPropertiesHelper parent class
   
   **camel-archetype-component** and **camel-archetype-dataformat**
     - Fix missing plugin version WARNING for `build-helper-maven-plugin`
     by adding a new property `build-helper-maven-plugin-version`
   
   
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel] oscerd merged pull request #3995: Fix minor issues in camel maven archetypes

Posted by GitBox <gi...@apache.org>.
oscerd merged pull request #3995:
URL: https://github.com/apache/camel/pull/3995


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel] amdmdi commented on pull request #3995: Fix minor issues in camel maven archetypes

Posted by GitBox <gi...@apache.org>.
amdmdi commented on pull request #3995:
URL: https://github.com/apache/camel/pull/3995#issuecomment-657218154


   I generated projects using these archetypes and then tried to build them
   These are the results:
   [check-3.5.x-after-patch.log](https://github.com/apache/camel/files/4908494/check-3.5.x-after-patch.log)
   [check-3.5.x-before-patch.log](https://github.com/apache/camel/files/4908495/check-3.5.x-before-patch.log)
   
   ```
   for d in camel/archetypes/camel-archetype-*; do
     arch=$(basename $d)
     
     echo "********** $arch **********"
     mvn -B -V archetype:generate \
       -DarchetypeGroupId=org.apache.camel.archetypes \
       -DarchetypeArtifactId=$arch \
       -DarchetypeVersion=3.5.0-SNAPSHOT \
       -DinteractiveMode=false \
       -DgroupId=org.acme \
       -DartifactId=$arch \
       -Dversion=1.0.0 \
       -Dname="DummyComponent" \
       -Dscheme=dummy
     
     
     echo mvn -B clean package -f $arch/pom.xml
     mvn -B clean package -f $arch/pom.xml
   
     echo "**************************************************"
     echo
   done
   ```
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org