Skip to content

Commit

Permalink
chore: add sign plugin in pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
xvyang.xy committed Apr 4, 2023
1 parent 71d6c28 commit b5b0ac2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -500,4 +500,28 @@
</resources>
</build>

<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit b5b0ac2

Please sign in to comment.