Skip to content

Commit

Permalink
Fix lineEnding param spelling and mark as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ctubbsii committed Apr 25, 2020
1 parent 41e6726 commit d6a0a39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
<plugin>
<groupId>net.revelc.code</groupId>
<artifactId>impsort-maven-plugin</artifactId>
<version>1.3.2</version>
<version>1.4.0</version>
<configuration>
<groups>java.,javax.,org.,com.</groups>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ abstract class AbstractImpSortMojo extends AbstractMojo {
*
* @since 1.4.0
*/
@Parameter(defaultValue = "AUTO", property = "impsort.lineending", required = true)
@Parameter(alias = "lineEnding", property = "impsort.lineEnding", defaultValue = "AUTO")
private LineEnding lineEnding;

abstract void processResult(Path path, Result results) throws MojoFailureException;
Expand Down

0 comments on commit d6a0a39

Please sign in to comment.