-
Notifications
You must be signed in to change notification settings - Fork 43
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
lanch4Jbin dependency does not recognize aarch64 platform architecture and patch level version number #179
Comments
When forked version of
|
The plugin assumes (specified) def jarName = "launch4j-(\\d{1,2}\\.\\d{1,2})-${workingDirName}" gradle-launch4j/src/main/groovy/edu/sc/seis/launch4j/tasks/DefaultLaunch4jTask.groovy Lines 246 to 254 in 4b6ab73
The plugin also assumes a hard-coded classifier string got by |
Problem
gradle-launch4j
plugin assumes aworkdir
package classifier aslinux
when running on other thanx86-64
.I have made forked version of
launch4j
that have anlinux-aarch64
support. You can find it at https://repo1.maven.org/maven2/org/omegat/launch4j/3.50.1/When specified a configuration
I got an error
It is because
gradle-launch4j/src/main/groovy/edu/sc/seis/launch4j/Launch4jPlugin.groovy
Lines 106 to 113 in 4b6ab73
The plugin assumes there are only
linux
andlinux64
.It is better to respect the configuration or providing a way to mapping among platforms and flavors.
The text was updated successfully, but these errors were encountered: