Skip to content

Commit

Permalink
Fix deployment (#594)
Browse files Browse the repository at this point in the history
The maven-resolver-tools was not deployed before 2.0.3,
and in 2.0.3 release had to manually add sigs for the
two new files.

This is simple fix just by reordering generation/attach
of the files to let gpg plugin sign them as well.
  • Loading branch information
cstamas authored Oct 25, 2024
1 parent 0bb8587 commit dd7f4ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions maven-resolver-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
<goals>
<goal>java</goal>
</goals>
<phase>verify</phase>
<phase>package</phase>
<configuration>
<mainClass>org.eclipse.aether.tools.CollectConfiguration</mainClass>
<arguments>
Expand All @@ -194,7 +194,7 @@
<goals>
<goal>java</goal>
</goals>
<phase>verify</phase>
<phase>package</phase>
<configuration>
<mainClass>org.eclipse.aether.tools.CollectConfiguration</mainClass>
<arguments>
Expand All @@ -217,7 +217,7 @@
<goals>
<goal>attach-artifact</goal>
</goals>
<phase>verify</phase>
<phase>package</phase>
<configuration>
<artifacts>
<artifact>
Expand Down

0 comments on commit dd7f4ab

Please sign in to comment.