-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implementation & api dependencies don't copy #21
Comments
Yep, Now, I use javapackager like it: javapackager -deploy -native -outdir build -srcdir build/fxlauncher -appclass fxlauncher.Launcher -outfile myapp -name myapp -title myapp -vendor nintha the batch can instead of Good luck |
The CopyAppDependenciesTask is really short and sweet, so this shouldn't be too hard, right? I'm a total noob when it comes to groovy, but it seems this might be fixed on this line:
Here's something helpful! Maybe this is something to be scheduled for version 2.0 when we break other things, too. |
Ooh! Maybe we can solve this using the Here's who lead me to that answer. |
i can't tell what |
Newer gradle versions recommend using the
implementation
orapi
keywords instead ofcompile
andruntime
. Unfortunately, the plugin doesn't seem to pick up dependencies declared in that way.https://docs.gradle.org/current/userguide/dependency_management_for_java_projects.html
The text was updated successfully, but these errors were encountered: