Skip to content

Commit

Permalink
Merge pull request #37 from clagomess/demanda_36
Browse files Browse the repository at this point in the history
Demanda 36
  • Loading branch information
clagomess authored Dec 22, 2019
2 parents 5707c96 + 89ec7be commit 68ade5b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
7 changes: 7 additions & 0 deletions keystore/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Keystore

Pass: 9WPGe4wN
Build:
```
keytool -genkey -v -keystore pirilampo.jks -keyalg RSA -keysize 2048 -validity 10000 -alias pirilampo
```
Binary file added keystore/pirilampo.jks
Binary file not shown.
24 changes: 23 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>pirilampo</groupId>
<artifactId>pirilampo</artifactId>
<version>1.1.8</version>
<version>1.1.9</version>
<name>Pirilampo</name>
<description>Gerador de documentação com base features escritos na linguagem Gherkin (Cucumber)</description>

Expand Down Expand Up @@ -238,6 +238,28 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>net.jsign</groupId>
<artifactId>jsign-maven-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<file>target/${project.name}.exe</file>
<name>${project.name}</name>
<url>https://github.com/clagomess/pirilampo</url>
<keystore>keystore/pirilampo.jks</keystore>
<alias>pirilampo</alias>
<storepass>9WPGe4wN</storepass>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 68ade5b

Please sign in to comment.