File tree 3 files changed +10
-3
lines changed
src/test/java/org/apache/maven/plugins/gpg/it
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ org.junit.platform:junit-platform-commons = 0xFF6E2C001948C5F2F38B0CC385911F425E
27
27
org.opentest4j:opentest4j = 0xFF6E2C001948C5F2F38B0CC385911F425EC61B51
28
28
org.apache.maven.resolver = 0x29BEA2A645F2D6CED7FB12E02B172E3E156466E8
29
29
org.apache.maven.shared:maven-invoker = 0x84789D24DF77A32433CE1F079EB80E92EB2135B1
30
+ org.apache.maven.shared:maven-shared-utils = 0x84789D24DF77A32433CE1F079EB80E92EB2135B1
30
31
org.codehaus.plexus:plexus-cipher = 0x6A814B1F869C2BBEAB7CB7271A2A1C94BDE89688
31
32
org.codehaus.plexus:plexus-classworlds = 0xB91AB7D2121DC6B0A61AA182D7742D58455ECC7C
32
33
org.codehaus.plexus:plexus-component-annotations = 0xFA77DCFEF2EE6EB2DEBEDD2C012579464D01C06A
Original file line number Diff line number Diff line change @@ -186,7 +186,13 @@ under the License.
186
186
<dependency >
187
187
<groupId >org.apache.maven.shared</groupId >
188
188
<artifactId >maven-invoker</artifactId >
189
- <version >3.2.0</version >
189
+ <version >3.3.0</version >
190
+ <scope >test</scope >
191
+ </dependency >
192
+ <dependency >
193
+ <groupId >org.apache.maven.shared</groupId >
194
+ <artifactId >maven-shared-utils</artifactId >
195
+ <version >3.4.2</version >
190
196
<scope >test</scope >
191
197
</dependency >
192
198
<dependency >
Original file line number Diff line number Diff line change 23
23
import java .io .PrintStream ;
24
24
import java .net .URISyntaxException ;
25
25
import java .net .URL ;
26
- import java .util .Arrays ;
27
26
import java .util .Properties ;
28
27
29
28
import org .apache .commons .io .input .NullInputStream ;
@@ -48,7 +47,8 @@ public static InvocationRequest createRequest(
48
47
request .setDebug (true );
49
48
request .setShowErrors (true );
50
49
request .setTimeoutInSeconds (60 ); // safeguard against GPG freezes
51
- request .setGoals (Arrays .asList ("clean" , "install" ));
50
+ request .addArg ("clean" );
51
+ request .addArg ("install" );
52
52
request .setPomFile (pomFile );
53
53
54
54
if (providePassphraseEnv ) {
You can’t perform that action at this time.
0 commit comments