Skip to content

Commit

Permalink
Add a code signing profile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mailaender committed Mar 20, 2024
1 parent 38d1c76 commit a9ae007
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions openchrom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,34 @@
</plugins>
</pluginManagement>
</build>

<profiles>
<profile>
<id>codesign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<keystore>${jarsigner.keystore}</keystore>
<alias>${jarsigner.alias}</alias>
<storepass>${jarsigner.storepass}</storepass>
<keypass>${jarsigner.keypass}</keypass>
</configuration>
<executions>
<execution>
<id>sign</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit a9ae007

Please sign in to comment.