Posts

Showing posts from June, 2020

Maven Spring and Apache Camel notes

Maven command to create mvn project or Camel mvn archetype:generate -DarchetypeGroupId=org.apache.camel.archetypes -DarchetypeArtifactId=camel-archetype-spring  -DarchetypeVersion=3.0.0 -DgroupId=myGroupId -DartifactId=myArtifactId central maven repo https://repo1.maven.org/maven2/ nexus repo https://repository.apache.org/#nexus-search;quick~camel-archetype-spring camel maven archtype https://camel.apache.org/manual/latest/camel-maven-archetypes.html mvn archetype:generate \ -DarchetypeGroupId=org.apache.camel.archetypes \ -DarchetypeArtifactId=camel-archetype-java \ -DarchetypeVersion=3.4.0-SNAPSHOT \ -DarchetypeRepository=https://repository.apache.org/content/groups/snapshots-group SPRING BASED CAMEL ROUTE mvn archetype:generate \ -DarchetypeGroupId=org.apache.camel.archetypes \ -DarchetypeArtifactId=camel-archetype-spring \ -DarchetypeVersion=1.5.0 \ -DgroupId=myGroupId \ -DartifactId=myArtifactId which can be run i