This project is a template of a Camel component.
For more help see the Apache Camel documentation:
http://camel.apache.org/writing-components.html
- Add GitHub Maven packages repo to pom.xml/settings.xml
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>github-hzg</id>
<url>https://maven.pkg.github.com/hzg-wpi/*</url>
</repository>
</repositories>
- Add corresponding server to settings.xml
<server>
<id>github-hzg</id>
<username>GITHUB_USER</username>
<password>GITHUB_TOKEN</password>
</server>
- Add corresponding dependcy to your pom.xml e.g. server:
<dependency>
<groupId>de.hereon.tango</groupId>
<artifactId>camel-component</artifactId>
<version>2.2</version>
</dependency>
See GitHub docs: here