AdoptOpenJDK / jitwatch

Log analyser / visualiser for Java HotSpot JIT compiler. Inspect inlining decisions, hot methods, bytecode, and assembly. View results in the JavaFX user interface.
Other
3.06k stars 437 forks source link

Fix gradle build error #316

Closed aalmiray closed 4 years ago

aalmiray commented 4 years ago

Caused by an eager resolve of custom configuration. Fixes #315

The compileOnly configuration is supported since Gradle 4 and delivers the behavior of the provided scope found in Maven.

chriswhocodes commented 4 years ago

Thanks Andres!