x

xapi-jre

This module exists solely to package all other jre modules into a single uber jar. This makes deploying to non-mavenized targets much easier. To use the uber jar in maven projects, you much inherit using a classifier: groupId: wetheinter.net artifactId: xapi-jre classifier: uber Of course, you would be wise to inherit your dependencies individually; the uber jar is intended for projects like collide, which have complex configuration, and adding many jars would be a pain. It also allows dependent modules to discover new features, as modules graduate from labs to final, they will be added here. As you type X_, autocomplete will expose newly added services.
WeTheInter.net
Files download
File Operation
xapi-jre-0.3.jar download
xapi-jre-0.3.pom download
Apache Maven
<dependency>
  <groupId>net.wetheinter</groupId>
  <artifactId>xapi-jre</artifactId>
  <version>0.3</version>
</dependency>
Gradle Groovy
implementation 'net.wetheinter:xapi-jre:0.3'
Gradle Kotlin
implementation("net.wetheinter:xapi-jre:0.3")
Scala SBT
libraryDependencies += "net.wetheinter" % "xapi-jre" % "0.3"
Groovy Grape
@Grapes(
  @Grab(group='net.wetheinter', module='xapi-jre', version='0.3')
)
Apache Ivy
<dependency org="net.wetheinter" name="xapi-jre" rev="0.3" />
Leiningen
[net.wetheinter/xapi-jre "0.3"]
Apache Buildr
'net.wetheinter:xapi-jre:jar:0.3'