Skip to content

Commit

Permalink
added java17 support (#18)
Browse files Browse the repository at this point in the history
Co-authored-by: Mike Friesen - FormKiQ <mike@formkiq.com>
  • Loading branch information
mfriesen and formkiqMike authored Nov 11, 2022
1 parent 8c97635 commit 1e986ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group 'com.formkiq.gradle'
version '1.3.1'
version '1.3.2'

sourceCompatibility = "11"
targetCompatibility = "11"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/gradle/GraalvmNativeTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
public class GraalvmNativeTask extends DefaultTask {

/** Supported Java Versions. */
private static final List<String> SUPPORTED_JAVA_VERSIONS = Arrays.asList("java11", "java8");
private static final List<String> SUPPORTED_JAVA_VERSIONS = Arrays.asList("java11", "java8", "java17");

/** {@link GraalvmNativeExtension}. */
private GraalvmNativeExtension extension;
Expand Down

0 comments on commit 1e986ab

Please sign in to comment.