groovyfx-project / groovyfx

A library for writing JavaFX 8 applications in the Groovy language.
http://groovyfx.org
Apache License 2.0
199 stars 48 forks source link

Upgrade Project to Latest OpenJDK and Gradle Versions #70

Open wise-coders opened 2 weeks ago

wise-coders commented 2 weeks ago

Is it possible to make this project compatible with the latest OpenJDK versions and Gradle?

If I upgrade, I am getting this error:

C:\Temp\groovyfx\src\main\groovy\groovyx\javafx\canvas\FillArcOperation.groovy: Could not find class for Transformation Processor groovyx.javafx.beans.FXBindableASTTransformation declared by groovyx.javafx.beans.FXBindable

I previously fixed another issue by changed in build.gradle from

sourceSets {
    demo {
        compileClasspath += sourceSets.main.output + configurations.compile
        runtimeClasspath += sourceSets.main.output
...

to

sourceSets {
    demo {
        compileClasspath += sourceSets.main.output + configurations.runtimeClasspath
        runtimeClasspath += sourceSets.main.output