Skip to content

Commit a086faf

Browse files
committed
Fix deployment
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.
1 parent 0bb8587 commit a086faf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

maven-resolver-tools/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
<goals>
179179
<goal>java</goal>
180180
</goals>
181-
<phase>verify</phase>
181+
<phase>package</phase>
182182
<configuration>
183183
<mainClass>org.eclipse.aether.tools.CollectConfiguration</mainClass>
184184
<arguments>
@@ -194,7 +194,7 @@
194194
<goals>
195195
<goal>java</goal>
196196
</goals>
197-
<phase>verify</phase>
197+
<phase>package</phase>
198198
<configuration>
199199
<mainClass>org.eclipse.aether.tools.CollectConfiguration</mainClass>
200200
<arguments>
@@ -217,7 +217,7 @@
217217
<goals>
218218
<goal>attach-artifact</goal>
219219
</goals>
220-
<phase>verify</phase>
220+
<phase>package</phase>
221221
<configuration>
222222
<artifacts>
223223
<artifact>

0 commit comments

Comments
 (0)