-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Java 9 multi release jars #61 #63
Conversation
liamsharp
commented
Dec 15, 2017
- A property for library jar exclusions (libraryJarExclusion)
- A property for library jar exclusions (libraryJarExclusion)
@cmorty any objections? |
@liamsharp ping? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One tiny remark, otherwise, I think it's good!
libraryJars.add(file); | ||
} else { | ||
args.add("-libraryjars"); | ||
args.add(fileToString(file)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This still looks like an indentation mismatch, right?
@@ -123,7 +123,13 @@ | |||
* @parameter default-value="false" | |||
*/ | |||
private boolean putLibraryJarsInTempDir; | |||
|
|||
|
|||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, also indentation mismatch
@@ -60,7 +60,7 @@ | |||
|
|||
public class ProGuardMojo extends AbstractMojo { | |||
|
|||
/** | |||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one more space?
Closing this since the new fixes are in #76 |