How to use with Maven - RaiMan/SikuliX-2014 GitHub Wiki
How to define the dependency to sikulixapi.jar.
This is related to SikuliX 1.1.1+ (not version 2!). SikuliX 1.1.0 is no longer supported - use 1.1.1
For the current release version 1.1.1:
<dependency>
<groupId>com.sikulix</groupId>
<artifactId>sikulixapi</artifactId>
<version>1.1.1</version>
</dependency>
If you want to use the latest SNAPSHOT version (related to a nightly build), you need a repository entry:
<repository>
<id>sonatype-ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
... and in the above dependency for sikulixapi use:
<version>1.1.2-SNAPSHOT</version>
Be aware: snapshot versions before 1.1.2 are no longer supported.