File tree Expand file tree Collapse file tree 4 files changed +12
-1
lines changed
main/java/org/apache/maven/plugins/deploy Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 ))
Original file line number Diff line number Diff line change 1919package org .apache .maven .plugins .deploy ;
2020
2121import 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 ;
2327import java .util .regex .Matcher ;
2428import java .util .regex .Pattern ;
2529
You can’t perform that action at this time.
0 commit comments