File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/main/java/com/simpligility/maven/plugins/android/phase04processclasses Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 2020
2121 <groupId >com.simpligility.maven.plugins</groupId >
2222 <artifactId >android-maven-plugin</artifactId >
23- <version >4.6.1 </version >
23+ <version >4.6.2 </version >
2424 <packaging >maven-plugin</packaging >
2525
2626 <name >Android Maven Plugin - android-maven-plugin</name >
Original file line number Diff line number Diff line change 1111import com .simpligility .maven .plugins .android .configuration .Proguard ;
1212
1313import org .apache .commons .io .IOUtils ;
14+ import org .apache .commons .lang3 .StringUtils ;
1415import org .apache .commons .lang3 .SystemUtils ;
1516import org .apache .maven .artifact .Artifact ;
1617import org .apache .maven .plugin .MojoExecutionException ;
@@ -763,6 +764,10 @@ private List< ProGuardInput > getLibraryInputFiles()
763764 @ SuppressWarnings ( "unused" ) // NB Used to populate the parsedProguardJarPath attribute via reflection.
764765 private String getProguardJarPath () throws MojoExecutionException
765766 {
767+ if ( !StringUtils .isEmpty ( proguardProguardJarPath ) )
768+ {
769+ return proguardProguardJarPath ;
770+ }
766771 return getProguardJarPathFromDependencies ();
767772 }
768773
You can’t perform that action at this time.
0 commit comments