Features • Installation • Usage
- Implements the Mapping API (v1.0.0) by delegating to Apache Commons JEXL
- Zero dependencies, Apache Commons JEXL shaded for your convenience
- Sandboxed script execution environment
Add JCenter as a repository to your Maven POM:
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>jcenter</id>
<name>JCenter</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>
Add the following dependency:
<dependency>
<groupId>de.dmeiners.mapping</groupId>
<artifactId>mapping-api</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>de.dmeiners.mapping</groupId>
<artifactId>mapping-impl-jexl</artifactId>
<version>1.0.1</version>
</dependency>
The corresponding section of the API module applies. See also the reference of the Apache Commons JEXL scripting language.