-
Notifications
You must be signed in to change notification settings - Fork 347
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
Distributed by classifier? #437
Comments
This feature could be very useful when it comes with jlink to customize the runtime |
Maven itself doesn't even support classifiers and last I read they were being phased out in favor of multi-release jars. The java build process is nothing short of a dumpster fire. I am sure Gradle is slightly better than Maven but honestly Maven was far worse than Ant and anything including a bunch of shell scripts would be an improvement. I have no desire to look at the build system for this project, but if you want to try and introduce classifiers into mavens deploy plugin, by all means, create a branch and I will be happy to look it over. With that said, you probably don't even want to use the native library auto loading from Java FX. The whole concept of unpacking the jar and loading the native library was only provided as a convenience and is not even close to the officially supported This library also has the ability to override how the native library is located which should give you the flexibility to do just about anything for your customer facing deliverables. |
Hi:
We happen to see this dependency
It is very useful lib
and one interesting thing is in the lib directory
all different platforms(darwin, linux, windows) and architectures of cpu(arm, 32bits, 64bits, x64, x86) are packaged together
so is it possible to distribute different libs with classifier for different platform and architecture?
like JavaFX does?
https://repo1.maven.org/maven2/org/openjfx/javafx-controls/20-ea+11/
using classifier to separate them
https://repo1.maven.org/maven2/org/openjfx/javafx/20-ea+11/javafx-20-ea+11.pom
more information here:
https://maven.apache.org/plugins/maven-deploy-plugin/examples/deploying-with-classifiers.html
Thanks
The text was updated successfully, but these errors were encountered: