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 0.4.4-3-ga1b6dac
0.4.4-3-ga1b6dac
Created 27 June 2018.
Xeno's bundle for building Java Libraries, includes Code Quality
Using the plugins DSL:
plugins {
id("com.xenoterracide.gradle.java-lib") version "0.4.4-3-ga1b6dac"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.xenoterracide.gradle:pluginbundle:0.4.4-3-ga1b6dac")
}
}
apply(plugin = "com.xenoterracide.gradle.java-lib")
Using the plugins DSL:
plugins {
id "com.xenoterracide.gradle.java-lib" version "0.4.4-3-ga1b6dac"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.xenoterracide.gradle:pluginbundle:0.4.4-3-ga1b6dac"
}
}
apply plugin: "com.xenoterracide.gradle.java-lib"