bootique-linkmove
Provides LinkMove integration with Bootique. The main value of this integration is the ability to configure connectors and extractor locations via Bootique, as well as to enhance LinkMove with more advanced connectors based on the existing Bootique features, such as HTTP client.
For additional help/questions about this example send a message to Bootique forum.
Prerequisites
* Java 1.8 or newer.
* Apache Maven.
Setup
Add bootique-linkmove to your build tool
Maven
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.bootique.bom</groupId>
<artifactId>bootique-bom</artifactId>
<version>X.X</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependency>
<groupId>io.bootique.linkmove</groupId>
<artifactId>bootique-linkmove</artifactId>
</dependency>
<!-- If you need to process JSON sources also include JSON module-->
<!--
<dependency>
<groupId>io.bootique.linkmove</groupId>
<artifactId>bootique-linkmove-json</artifactId>
</dependency>
-->
Use LinkMove
Now you can inject LmRuntime
in your code, build and execute LmTasks
.