Skip to content

Commit

Permalink
Only sign artifacts (and generate source and javadoc jars) during the…
Browse files Browse the repository at this point in the history
… 'deploy' phase.

closes #2
  • Loading branch information
jze committed Dec 1, 2024
1 parent cbf6e16 commit 1b28381
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
Expand All @@ -74,6 +74,7 @@
<executions>
<execution>
<id>attach-sources</id>
<phase>deploy</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
Expand All @@ -87,6 +88,7 @@
<executions>
<execution>
<id>attach-javadocs</id>
<phase>deploy</phase>
<goals>
<goal>jar</goal>
</goals>
Expand Down

0 comments on commit 1b28381

Please sign in to comment.