Skip to content

Commit

Permalink
add gpg signer
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeliso committed Jan 27, 2025
1 parent 4bd25c3 commit 95b60bd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ mvn test

## Version History

### 1.3.2
- Add config to generate signed jars

### 1.3.1

- Optimize out busy-wait in the net selector
Expand Down
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>name.maxdeliso</groupId>
<artifactId>teflon</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
<packaging>jar</packaging>
<name>teflon</name>
<url>https://github.com/maxdeliso/teflon</url>
Expand Down Expand Up @@ -220,6 +220,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 95b60bd

Please sign in to comment.