MVN

net.wetheinter : xapi-core-reflect

Maven & Gradle

May 31, 2015
7 usages

XApi - Core reflection apis and interfaces · All of our modules, somewhere along the way, use reflective structures wrapping java objects from various apis. Gwt uses JDT AST, Jre uses actual reflection, and our injection library uses a bytecode scanner to read in .class files. In order to abstract over the various apis we wrap, we have our own interface layer to describe java metadata, so we can create tools to utilize java structure independent of any given dependencies.

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

Latest Version

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

  • Latest Stable: 0.5

All Versions

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

  • Version Updated
  • xapi-core-reflect-0.5

    May 30, 2015
  • xapi-core-reflect-0.4

    Feb 23, 2014
  • xapi-core-reflect-0.3

    Apr 13, 2013

How to add a dependency to Maven

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

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

How to add a dependency to Gradle

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

implementation 'net.wetheinter:xapi-core-reflect:0.5'

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

implementation("net.wetheinter:xapi-core-reflect:0.5")

How to add a dependency to SBT Scala

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

libraryDependencies += "net.wetheinter" % "xapi-core-reflect" % "0.5"