We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In order to improve predictability As a gradle-jpi-plugin user I want the jenkinsPlugin.shortName to also influence the base name of the jar
jenkinsPlugin.shortName
Today the shortName controls the output of the jpi, but the jar is always named after the project.
shortName
// build.gradle jenkinsPlugin { coreVersion = '2.222.3' shortName = 'sun' } version = '1.0.0'
// settings.gradle rootProject.name = 'moon'
$ ./gradlew jpi && ls -la build/libs sun.jpi moon-1.0.0.jar
The text was updated successfully, but these errors were encountered:
1cc1bfa
No branches or pull requests
In order to improve predictability
As a gradle-jpi-plugin user
I want the
jenkinsPlugin.shortName
to also influence the base name of the jarToday the
shortName
controls the output of the jpi, but the jar is always named after the project.The text was updated successfully, but these errors were encountered: