com.zyxist.chainsaw
Owner: Tomasz Jędrzejewski
A plugin that adds the support for building and testing modular JDK9 applications with Gradle.
https://github.com/zyxist/chainsaw
Sources: https://github.com/zyxist/chainsaw
Version 0.3.1 (latest)
0.3.1
Created 14 March 2018.
Adds a support for building and testing modular JDK9 applications with Gradle.
Using the plugins DSL:
plugins {
id("com.zyxist.chainsaw") version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.zyxist:chainsaw:0.3.1")
}
}
apply(plugin = "com.zyxist.chainsaw")
Using the plugins DSL:
plugins {
id "com.zyxist.chainsaw" version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.zyxist:chainsaw:0.3.1"
}
}
apply plugin: "com.zyxist.chainsaw"