There are two ways you can generate the common-etl project. This page will describe the two ways. The intended audience for this page will be a developer with a basic knowledge of Maven, Spring and Java.
- Generating from the code.
- Pull the code through GIT or SVN
- navigate to the project's root directory run "mvn install" on the project.
- navigate to the root of where you want to place the generated version of the project
- run mvn archetype:generate -DarchetypeCatalog=local
- fill out the prompted fields how you would like them to be
- Import the newly created class into the IDE of your choice and modify at will.
- Generate from the jar
- Download the current jar from the downloads page
- navigate to the jar's saved directory and run mvn install
- "mvn -U install:install-file -Dfile=common-etl-<version>.jar" where version is the version of the jar you downloaded.
- Follow steps 3 and 4 of Generating from the code.