chainsaw icon indicating copy to clipboard operation
chainsaw copied to clipboard

Gradle plugin: adds support for building Java 9 modules.

Results 25 chainsaw issues
Sort by recently updated
recently updated
newest added

It seems, that `--add-exports` definitions are currently not used for JavaCompile. Following configuration does not effect the `compilerArgs`: ```java javaModule.hacks { exports("javafx.graphics","com.sun.javafx.scene.input",javaModule.name) exports("javafx.graphics", "com.sun.javafx.css", javaModule.name) } ``` Following snippet is...

Unfortunately my Gradle-fu is not strong enough to debug this, but basically - create a hello world Kotlin project, create a module-info.java file, add Chainsaw and it doesn't work. The...

bug
help wanted

use the host platform's path-separator character to delimit the files passed to the --patch-module option

[Oracle's Tools Reference](https://docs.oracle.com/en/java/javase/11/tools/javac.html#GUID-AEEC9F07-CB49-4E96-8BC7-BCC2C7F725C9) incorrectly shows the `:` character as separator for the files that patch a given module: ``` --patch-module module=file(:file)* ``` The actual separator, as specified in [JEP 261](https://openjdk.java.net/jeps/261#Patching-module-content)...

Multi-release JARs allow packaging multiple variants of individual classes that target different JDK versions. Currently, no build system supports them, and there is no agreed convention on a directory structure...

enhancement

Please publish a Chainsaw artifact to Maven Central. I want to use a custom plugin to apply Chainsaw (along with other standard plugins & configs) to all my Java builds....

I've got `exports my.package to junit;` in my module-info and most of my tests can now run while building but some tests rely on test data that I place in...

Please support composite builds. If they are currently supposed to work, then please let me know and I'll try again to get Chainsaw 0.3.1 working with my Gradle Wrapper 4.8.1...

Chainsaw 0.3.1 incompatible with `java-gradle-plugin`. When using the following `plugins` block with Gradle Wrapper 4.8.1, Java 10.0.1+10 & macOS 10.13.5: plugins { `java-gradle-plugin` id("com.zyxist.chainsaw") version "0.3.1" } I get the...

my gradle build consists of three projects. Project A, is dependency of Project B and Project B is a depenency to my root project. I used to be able to...