com.github.hauner.jarTest
Owner:
Martin Hauner
create a jar from the test source set. See https://github.com/hauner/gradle-plugins/tree/master/jartest for usage information.
https://github.com/hauner/gradle-plugins
Version 1.0
Created 05 December 2015.
create a jar from the test source set. See https://github.com/hauner/gradle-plugins/tree/master/jartest for usage information.
Using the plugins DSL:
plugins {
id("com.github.hauner.jarTest") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.gradle-plugins:jartest:1.0")
}
}
apply(plugin = "com.github.hauner.jarTest")
Using the plugins DSL:
plugins {
id "com.github.hauner.jarTest" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.gradle-plugins:jartest:1.0"
}
}
apply plugin: "com.github.hauner.jarTest"