Skip to content

Commit c0813b9

Browse files
committed
adding support to accept java 17 projects
1 parent 8085719 commit c0813b9

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "feature",
3+
"description" : "Code Transform: Enable support for Java 17 projects."
4+
}

plugins/amazonq/codetransform/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codemodernizer/CodeModernizerManager.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ class CodeModernizerManager(private val project: Project) : PersistentStateCompo
123123
private val supportedJavaMappings = mapOf(
124124
JavaSdkVersion.JDK_1_8 to setOf(JavaSdkVersion.JDK_17),
125125
JavaSdkVersion.JDK_11 to setOf(JavaSdkVersion.JDK_17),
126+
JavaSdkVersion.JDK_17 to setOf(JavaSdkVersion.JDK_17),
126127
)
127128
init {
128129
CodeModernizerSessionState.getInstance(project).setDefaults()

0 commit comments

Comments
 (0)