Skip to content

Commit

Permalink
Add Java 21 to list of accepted valid values for complianceLevel
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Oct 9, 2023
1 parent fcfda04 commit 1942061
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", "12", "13", "14", "15", "16", "17");
Arrays.asList("1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "9", "10", "11", "12", "13", "14", "15", "16", "17", "21");

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

0 comments on commit 1942061

Please sign in to comment.