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 13c6636 commit 7e74595
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target/
/target/
/keystore/
24 changes: 22 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,25 @@
</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>
Expand All @@ -23,8 +42,9 @@
<author>Tuupertunut</author>
<licenseName>MIT License</licenseName>
<licenseFile>LICENSE.md</licenseFile>
<keystore>mykeystore</keystore>
<keystorealias>myself</keystorealias>
<keystore>keystore/keystore</keystore>
<keystorealias>tuupertunut</keystorealias>
<keystorepassword>${keystorepass}</keystorepassword>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 7e74595

Please sign in to comment.