-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add nbm-maven-plugin configuration to get nbm artifact signed
Signed-off-by: Eric Villard <[email protected]>
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,6 +81,18 @@ Please note that if no text is selected, the menu is disabled. | |
<artifactId>nbm-maven-plugin</artifactId> | ||
<version>4.5</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<!-- keep it for backwards compatibility to previous versions--> | ||
<codeNameBase>fr.evidev.netbeans.modules.caseconverter</codeNameBase> | ||
<author>Eric VILLARD ([email protected])</author> | ||
<homePageUrl>link:https://github.com/eviweb/netbeans-case-converter[https://github.com/eviweb/netbeans-case-converter]</homePageUrl> | ||
<!-- keystore: only required, if you don't want to pass the path to the keystore file via cmdline--> | ||
<keystore>${keystore}</keystore> | ||
<keystorealias>${keystorealias}</keystorealias> | ||
<keystorepassword>${keystorepassword}</keystorepassword> | ||
<licenseName>Apache License, Version 2.0</licenseName> | ||
<licenseFile>LICENSE</licenseFile> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
|