Skip to content

Commit

Permalink
support IDEA 221.*
Browse files Browse the repository at this point in the history
  • Loading branch information
suusan2go committed May 2, 2022
1 parent 9ba49bf commit 7753d29
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlinVersion = '1.4.10'
ext.kotlinVersion = '1.6.0'
repositories {
mavenCentral()
}
Expand All @@ -10,7 +10,7 @@ buildscript {

plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
id 'org.jetbrains.intellij' version '1.5.3'
id 'org.jetbrains.kotlin.jvm' version '1.4.21'
}

Expand All @@ -21,14 +21,14 @@ sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11

intellij {
version '2021.3'
version = '2022.1'
plugins = ['Kotlin', 'java']
pluginName 'kotlin-fill-class'
pluginName = 'kotlin-fill-class'
publishPlugin {
token System.getenv('TOKEN')
token = System.getenv('TOKEN')
}
patchPluginXml {
sinceBuild '191.8026.42'
sinceBuild = '191.8026.42'
}
}

Expand All @@ -38,7 +38,7 @@ repositories {
}

group 'com.github.suusan2go.kotlin-fill-class'
version '1.0.11'
version '1.0.12'

sourceCompatibility = 11

Expand Down
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-6.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
]]></description>

<change-notes><![CDATA[
1.0.11 - Add support for 213* / 2021.3 version of IDEA
1.0.12 - Add support for 221* / 2022.1 version of IDEA
]]>
</change-notes>

Expand Down

0 comments on commit 7753d29

Please sign in to comment.