com.xenoterracide.gradle.java-lib
Owner: Caleb Cushing
This plugin is unmaintained and may not work. Xeno's bundle for Java Libraries
https://bitbucket.org/xenoterracide/gradle-plugin-bundle
Sources: https://bitbucket.org/xenoterracide/gradle-plugin-bundle
Version v0.4.2-1-gf698a27
v0.4.2-1-gf698a27
Created 25 June 2018.
Xeno's bundle for building Java Libraries, includes Code Quality
Using the plugins DSL:
plugins {
id("com.xenoterracide.gradle.java-lib") version "v0.4.2-1-gf698a27"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.xenoterracide.gradle:pluginbundle:v0.4.2-1-gf698a27")
}
}
apply(plugin = "com.xenoterracide.gradle.java-lib")
Using the plugins DSL:
plugins {
id "com.xenoterracide.gradle.java-lib" version "v0.4.2-1-gf698a27"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.xenoterracide.gradle:pluginbundle:v0.4.2-1-gf698a27"
}
}
apply plugin: "com.xenoterracide.gradle.java-lib"