x

xapi-core-parent

This is the main aggregator for all implementation code shared between modules. Each module contains one or more service interfaces, exposed statically using "X_" prefixed classes. Core modules will define their API interfaces, their static accessor, and often a "plain-jre" default implementation which can be replaced by injection override. There must be zero external dependencies in any core modules. A low-performance, low-feature default is preferred over thick, dependency-ridden shared inherits.
WeTheInter.net/source/core
Files download
File Operation
xapi-core-parent-0.5.pom download
Apache Maven
<dependency>
  <groupId>net.wetheinter</groupId>
  <artifactId>xapi-core-parent</artifactId>
  <version>0.5</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'net.wetheinter:xapi-core-parent:0.5'
Gradle Kotlin
implementation("net.wetheinter:xapi-core-parent:0.5")
Scala SBT
libraryDependencies += "net.wetheinter" % "xapi-core-parent" % "0.5"
Groovy Grape
@Grapes(
  @Grab(group='net.wetheinter', module='xapi-core-parent', version='0.5')
)
Apache Ivy
<dependency org="net.wetheinter" name="xapi-core-parent" rev="0.5" />
Leiningen
[net.wetheinter/xapi-core-parent "0.5"]
Apache Buildr
'net.wetheinter:xapi-core-parent:jar:0.5'