File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed
src/test/java/org/apache/maven/plugins/gpg/it Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -30,5 +30,4 @@ org.apache.maven.shared:maven-invoker = 0x84789D24DF77A32433CE1F079EB80E92EB2135
30
30
org.apache.maven.shared:maven-shared-utils = 0x84789D24DF77A32433CE1F079EB80E92EB2135B1
31
31
org.codehaus.plexus:plexus-classworlds = 0xB91AB7D2121DC6B0A61AA182D7742D58455ECC7C
32
32
org.codehaus.plexus:plexus-component-annotations = 0xFA77DCFEF2EE6EB2DEBEDD2C012579464D01C06A
33
- org.codehaus.plexus:plexus-utils = 0x84789D24DF77A32433CE1F079EB80E92EB2135B1
34
- org.codehaus.plexus:plexus-xml = 0x84789D24DF77A32433CE1F079EB80E92EB2135B1
33
+ org.codehaus.plexus:plexus-utils = 0x32118CF76C9EC5D918E54967CA80D1F0EB6CA4BA
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ under the License.
23
23
<parent >
24
24
<groupId >org.apache.maven.plugins</groupId >
25
25
<artifactId >maven-plugins</artifactId >
26
- <version >43 </version >
26
+ <version >45 </version >
27
27
<relativePath />
28
28
</parent >
29
29
@@ -133,15 +133,13 @@ under the License.
133
133
<dependency >
134
134
<groupId >org.apache.maven.plugin-tools</groupId >
135
135
<artifactId >maven-plugin-annotations</artifactId >
136
+ <version >${version.maven-plugin-tools} </version >
136
137
<scope >provided</scope >
137
138
</dependency >
138
139
<dependency >
139
140
<groupId >org.codehaus.plexus</groupId >
140
141
<artifactId >plexus-utils</artifactId >
141
- </dependency >
142
- <dependency >
143
- <groupId >org.codehaus.plexus</groupId >
144
- <artifactId >plexus-xml</artifactId >
142
+ <version >3.6.0</version >
145
143
</dependency >
146
144
<dependency >
147
145
<groupId >org.bouncycastle</groupId >
@@ -243,7 +241,6 @@ under the License.
243
241
<plugin >
244
242
<groupId >org.apache.maven.plugins</groupId >
245
243
<artifactId >maven-invoker-plugin</artifactId >
246
- <version >3.9.0</version >
247
244
</plugin >
248
245
<plugin >
249
246
<groupId >org.simplify4u.plugins</groupId >
Original file line number Diff line number Diff line change 26
26
import org .junit .jupiter .params .ParameterizedTest ;
27
27
import org .junit .jupiter .params .provider .MethodSource ;
28
28
29
- import static org .junit .jupiter .api .Assertions .*;
29
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
30
+ import static org .junit .jupiter .api .Assertions .assertNotNull ;
31
+ import static org .junit .jupiter .api .Assertions .assertTrue ;
30
32
31
33
public class BcSignArtifactIT extends ITSupport {
32
34
public static Collection <Object []> data () {
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public static BuildResult executeRequest(
80
80
81
81
final File buildLog =
82
82
new File (request .getBaseDirectory (request .getPomFile ().getParentFile ()), "build.log" );
83
- try (final PrintStream buildLogStream = new PrintStream (buildLog )) {
83
+ try (PrintStream buildLogStream = new PrintStream (buildLog )) {
84
84
final InvocationOutputHandler buildLogOutputHandler = new PrintStreamHandler (buildLogStream , false );
85
85
final InvokerLogger logger = new PrintStreamLogger (buildLogStream , InvokerLogger .DEBUG );
86
86
You can’t perform that action at this time.
0 commit comments