Skip to content

Commit

Permalink
Enabled signing of the NBM file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuupertunut committed Oct 26, 2017
1 parent cbd51be commit 2dcbdb6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target/
/target/
/keystore/
31 changes: 25 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,37 @@
</licenses>
<build>
<plugins>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>keystore/pass.properties</file>
</files>
<quiet>true</quiet>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>3.14.1</version>
<extensions>true</extensions>
<configuration>
<author>Rob Terpilowski</author>
<licenseName>MIT License</licenseName>
<licenseFile>LICENSE</licenseFile>
<keystore>mykeystore</keystore>
<keystorealias>myself</keystorealias>
<licenseName>MIT License</licenseName>
<licenseFile>LICENSE</licenseFile>
<keystore>keystore/keystore</keystore>
<keystorealias>tuupertunut</keystorealias>
<keystorepassword>${keystorepass}</keystorepassword>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -57,7 +76,7 @@
</snapshots>
</repository>
</repositories>
<dependencies>
<dependencies>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-api-annotations-common</artifactId>
Expand Down

0 comments on commit 2dcbdb6

Please sign in to comment.