cheolgook

Results 3 comments of cheolgook

Sorry for the Rakefile, it shouldn't have been committed with this request. I just made some changes on it to run the unit test in my box. Should I file...

Had the same issue and found this workaround using `fork` option for `compileJava` tasks to let gradle use JDK's javac compiler. tasks.withType(JavaCompile) { options.fork = true } https://docs.gradle.org/current/dsl/org.gradle.api.tasks.compile.JavaCompile.html