Scenic View is a JavaFX application designed to make it simple to understand the current state of your application scenegraph, and to also easily manipulate properties of the scenegraph without having to keep editing your code. This lets you find bugs, and get things pixel perfect without having to do the compile-check-compile dance.
GNU General Public License v3.0
531
stars
69
forks
source link
Error: Unable to find agent jar file. Exiting Scenic View. #61
When scenic-view is started with gradlew run, the application won't start, instead an error message occurs. Running gradlew jar run instead works fine. Hence, modifying the run task to execute jar upfront solves the problem for gradlew run.
Closes #60 https://github.com/JonathanGiles/scenic-view/issues/60#issue-618534727
When scenic-view is started with
gradlew run
, the application won't start, instead an error message occurs. Runninggradlew jar run
instead works fine. Hence, modifying therun
task to executejar
upfront solves the problem forgradlew run
.