Skip to content

Commit

Permalink
Merge pull request #3 from nickwongdev/jdk-12-13
Browse files Browse the repository at this point in the history
Adding compliance levels for 12 and 13
  • Loading branch information
nickwongdev authored Jan 24, 2020
2 parents b506037 + 92a3b12 commit 2ba03d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/codehaus/mojo/aspectj/AjcHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class AjcHelper
* List holding all accepted values for the {@code complianceLevel} parameter.
*/
public static final List<String> ACCEPTED_COMPLIANCE_LEVEL_VALUES =
Arrays.asList("1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "9", "10", "11");
Arrays.asList("1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "9", "10", "11", "12", "13");

/**
* Checks if the given complianceLevel value is valid.
Expand Down

0 comments on commit 2ba03d6

Please sign in to comment.