MVN

net.wetheinter : xapi-jre

Maven & Gradle

May 31, 2015
1 usages

XApi - Jre uber jar · This module exists solely to package all other jre modules into a single uber jar. This makes deploying to non-mavenized targets much easier. 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.

<dependency>
    <groupId>net.wetheinter</groupId>
    <artifactId>xapi-jre</artifactId>
    <version>0.5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.wetheinter : xapi-jre to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.5

All Versions

Choose a version of net.wetheinter : xapi-jre to add to Maven or Gradle - All Versions:

  • Version Updated
  • xapi-jre-0.5

    May 30, 2015
  • xapi-jre-0.4

    Feb 23, 2014
  • xapi-jre-0.3

    Apr 13, 2013

How to add a dependency to Maven

Add the following net.wetheinter : xapi-jre maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.wetheinter</groupId>
    <artifactId>xapi-jre</artifactId>
    <version>0.5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.wetheinter : xapi-jre gradle dependency to your build.gradle file:

implementation 'net.wetheinter:xapi-jre:0.5'

Gradle Kotlin DSL: Add the following net.wetheinter : xapi-jre gradle kotlin dependency to your build.gradle.kts file:

implementation("net.wetheinter:xapi-jre:0.5")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.wetheinter : xapi-jre sbt scala dependency to your build.sbt file:

libraryDependencies += "net.wetheinter" % "xapi-jre" % "0.5"