Skip to content

Commit

Permalink
support k2 mode
Browse files Browse the repository at this point in the history
  • Loading branch information
EmptyIrony committed Nov 4, 2024
1 parent 709a3e3 commit 85105d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("java")
kotlin("jvm") version "1.9.25"
kotlin("jvm") version "2.0.20"
id("org.jetbrains.intellij") version "1.17.4"
id("com.github.johnrengelman.shadow") version "8.1.1"
}
Expand All @@ -20,7 +20,7 @@ dependencies {
}

intellij {
version.set("2024.2.0.2")
version.set("2024.2.1")

plugins.addAll(
"java",
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
kotlin.stdlib.default.dependency=false
pluginSinceBuild=232
version=1.2-SNAPSHOT
version=1.3-SNAPSHOT
kotlin.code.style=official
kotlin.experimental.tryK2=true
kapt.use.k2=true
6 changes: 5 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@
]]></description>

<change-notes><![CDATA[
Compatible with TabooLib version 6.2.x</a>!
Compatible with k2</a>!
]]></change-notes>

<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.modules.java</depends>
<depends>com.intellij.modules.lang</depends>
<depends>org.jetbrains.kotlin</depends>

<extensions defaultExtensionNs="org.jetbrains.kotlin">
<supportsKotlinPluginMode supportsK2="true" />
</extensions>

<extensions defaultExtensionNs="com.intellij">
<moduleBuilder id="TABOO_PROJECT_BUILDER" builderClass="org.tabooproject.development.ProjectBuilder"/>

Expand Down

0 comments on commit 85105d3

Please sign in to comment.