]> source.dussan.org Git - aspectj.git/commitdiff
Make AspectJ Ant task compatible with Java 16, 17 98/head
authorAlexander Kriegisch <Alexander@Kriegisch.name>
Mon, 15 Nov 2021 11:39:25 +0000 (12:39 +0100)
committerAlexander Kriegisch <Alexander@Kriegisch.name>
Mon, 15 Nov 2021 11:39:25 +0000 (12:39 +0100)
Closes #97

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
taskdefs/src/main/java/org/aspectj/tools/ant/taskdefs/AjcTask.java

index 218fc56d57172838622fef7f6589d45f06181def..a515f8e785147e4cf9980a5af17645084d5a7191 100644 (file)
@@ -250,9 +250,9 @@ public class AjcTask extends MatchingTask {
 
        public static final String COMMAND_EDITOR_NAME = AjcTask.class.getName() + ".COMMAND_EDITOR";
 
-       static final String[] TARGET_INPUTS = new String[] { "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "9", "10", "11", "12", "13", "14", "15" };
-       static final String[] SOURCE_INPUTS = new String[] { "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "9", "10", "11", "12", "13", "14", "15" };
-       static final String[] COMPLIANCE_INPUTS = new String[] { "-1.3", "-1.4", "-1.5", "-1.6", "-1.7", "-1.8", "-1.9", "-9", "-10", "-11", "-12", "-13", "-14", "15" };
+       static final String[] TARGET_INPUTS = new String[] { "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "9", "10", "11", "12", "13", "14", "15", "16", "17" };
+       static final String[] SOURCE_INPUTS = new String[] { "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "9", "10", "11", "12", "13", "14", "15", "16", "17" };
+       static final String[] COMPLIANCE_INPUTS = new String[] { "-1.3", "-1.4", "-1.5", "-1.6", "-1.7", "-1.8", "-1.9", "-9", "-10", "-11", "-12", "-13", "-14", "-15", "-16", "-17" };
 
        private static final ICommandEditor COMMAND_EDITOR;