MVN

net.wetheinter : xapi-jre-reflect

Maven & Gradle

Apr 13, 2013
5 usages
33 stars

XApi - Jre Reflection and Classpath Scanning · This module contains a classpath scanner, and bytecode reader. It is useful in any java runtime environment, and allows java code to parse bytecode into a meta structure of classes, annotations, methods and fields. This meta structure is used throughout xapi to allow us to extend java structures in a cross-platform compliant way (exposing services and service objects so you can hack support for whatever runtime you need). It is especially useful for fast runtime injection, and as an extensible structure during codegen (which exposes mutable interfaces for our meta structure)

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

Latest Version

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

  • Latest Stable: 0.3

All Versions

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

Version Vulnerabilities Updated
0.3
xapi-jre-reflect-0.3

How to add a dependency to Maven

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

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

How to add a dependency to Gradle

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

implementation 'net.wetheinter:xapi-jre-reflect:0.3'

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

implementation("net.wetheinter:xapi-jre-reflect:0.3")

How to add a dependency to SBT Scala

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

libraryDependencies += "net.wetheinter" % "xapi-jre-reflect" % "0.3"