Publishing utility JAR files to local Maven repository
Start a command line console to deploy the utility JAR files into your local Maven
repository.
Procedure
- Execute following command to deploy the system routines: mvn install:install-file -DgroupId=org.talend.camel -DartifactId=systemRoutines -Dversion=1.0.0 -Dfile=./src/ext/systemRoutines.jar -Dpackaging=jar -DgeneratePom=true
- Execute following command to deploy the user routines: mvn install:install-file -DgroupId=org.talend.camel -DartifactId=userRoutines -Dversion=1.0.0 -Dfile=./src/ext/userRoutines.jar -Dpackaging=jar -DgeneratePom=true
Results
Now we have all the necessary dependencies to do unit tests.