Skip to content

Commit 1b9f981

Browse files
committed
Fix package signing configuration
Since the update of the nexus-staging-maven-plugin, the artifacts need to be explicityly signed _before_ they are uploaded to OSSRH. Without this fix, an OSSRH release is not possible since the signature files are missing.
1 parent 5f8add3 commit 1b9f981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@
616616
<executions>
617617
<execution>
618618
<id>sign-artifacts</id>
619-
<phase>deploy</phase>
619+
<phase>verify</phase>
620620
<goals>
621621
<goal>sign</goal>
622622
</goals>

0 commit comments

Comments
 (0)