Skip to content

Commit

Permalink
Fix #34 Add support for Intellij 2023.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jumperchen committed Mar 29, 2023
1 parent 52fcd05 commit db4879d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
id 'org.jetbrains.intellij' version '1.10.0'
id 'org.jetbrains.intellij' version '1.13.3'
id 'java'
}

group 'org.zkoss.zkidea'
version '0.1.17'
version '0.1.18'

repositories {
mavenCentral()
Expand All @@ -18,9 +18,12 @@ dependencies {
}

intellij {
version = '2022.3'
version = '2023.1'
plugins = ['maven', 'com.intellij.java']
}
patchPluginXml {
untilBuild = null
}
}

java.sourceCompatibility = JavaVersion.VERSION_17
java.targetCompatibility = JavaVersion.VERSION_17
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
5 changes: 5 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
]]></description>

<change-notes><![CDATA[
<p>0.1.18</p>
<ul>
<li> [bug] #34 Add support for Intellij 2023.1 </li>
</ul>
<br>
<p>0.1.17</p>
<ul>
<li> [bug] #33 ZK Plugin not compatible with Intellij 2022.3 </li>
Expand Down

0 comments on commit db4879d

Please sign in to comment.