You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For point 1:
The Readme has a topic Requirements which referes you to the target platform where the requirement is explicitly stated together with a download link of the right version.
The README should be updated with more information.
Problems I encounted when trying this plugin out with my JavaFX application.
Execution failed for task ':nativeRunAgent'.
The README should mention that you need GraalVM on your computer, and need to set the GRAALVM_HOME environment variable.
Which GraalVM do you need: The GraalVM CE build or Gluon GraalVM build?
Execution failed for task ':nativeRunAgent'.
Execution failed for task ':nativeCompile'.
Where do I need to specify the class name?
When looking at a maven project, I see the property main.class is defined in pom.xml
<main.class>com.mycompany.sample.Main</main.class>
Setting main.class in my gradle.properties did not work
main.class = com.mycompany.sample.Main
Setting main.class on the command line to gradle did not work
./gradlew -P main.class=com.mycompany.sample.Main nativeBuild
Some searching, I found how to get it to work in #127
Set this in build.gradle
mainClassName = 'no.spacetec.qlv.QuicklookApplicationLauncher'
The text was updated successfully, but these errors were encountered: