Skip to content

Commit 93b2b3d

Browse files
Bump org.apache.maven.plugins:maven-plugins from 42 to 43 (#66)
* Bump org.apache.maven.plugins:maven-plugins from 42 to 43 Bumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 42 to 43. - [Release notes](https://github.com/apache/maven-parent/releases) - [Commits](https://github.com/apache/maven-parent/commits) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-plugins dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix checkstyle and its --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Slawomir Jaranowski <[email protected]>
1 parent f258595 commit 93b2b3d

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.maven.plugins</groupId>
2525
<artifactId>maven-plugins</artifactId>
26-
<version>42</version>
26+
<version>43</version>
2727
<relativePath />
2828
</parent>
2929

src/it/no-main-artifact-1/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ under the License.
8686
<groupId>org.apache.maven.plugins</groupId>
8787
<artifactId>maven-install-plugin</artifactId>
8888
<version>@mavenInstallPluginVersion@</version>
89+
<configuration>
90+
<allowIncompleteProjects>true</allowIncompleteProjects>
91+
</configuration>
8992
</plugin>
9093
<plugin>
9194
<groupId>org.apache.maven.plugins</groupId>

src/it/no-main-artifact-2/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ under the License.
8585
<groupId>org.apache.maven.plugins</groupId>
8686
<artifactId>maven-install-plugin</artifactId>
8787
<version>@mavenInstallPluginVersion@</version>
88+
<configuration>
89+
<allowIncompleteProjects>true</allowIncompleteProjects>
90+
</configuration>
8891
</plugin>
8992
<plugin>
9093
<groupId>org.apache.maven.plugins</groupId>

src/main/java/org/apache/maven/plugins/deploy/DeployFileMojo.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ private Path readingPomFromJarFile() {
232232
return null;
233233
}
234234

235+
@SuppressWarnings("checkstyle:MethodLength")
235236
public void execute() throws MojoException {
236237
if (Boolean.parseBoolean(skip)
237238
|| ("releases".equals(skip) && !session.isVersionSnapshot(version))

src/main/java/org/apache/maven/plugins/deploy/DeployMojo.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
package org.apache.maven.plugins.deploy;
2020

2121
import java.nio.file.Files;
22-
import java.util.*;
22+
import java.util.ArrayList;
23+
import java.util.Collection;
24+
import java.util.LinkedHashMap;
25+
import java.util.List;
26+
import java.util.Map;
2327
import java.util.regex.Matcher;
2428
import java.util.regex.Pattern;
2529

0 commit comments

Comments
 (0)