Skip to content

Commit

Permalink
Incompatible with 2022.3 #34
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis_Kusakin authored and Denis_Kusakin committed Feb 26, 2023
1 parent 1b57a19 commit 040b0b9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
16 changes: 9 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ buildscript {
}

plugins {
id 'org.jetbrains.intellij' version '1.9.0'
id 'org.jetbrains.intellij' version '1.13.0'
}

group 'org.deniskusakin.aem'
version '0.3.10'
version '0.4.0'

apply plugin: 'kotlin'

Expand All @@ -27,17 +27,19 @@ repositories {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
// implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
implementation group: 'com.github.kittinunf.fuel', name: 'fuel', version: '1.12.1'
implementation('com.github.kittinunf.fuel:fuel:1.12.1') {
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
}
}

compileKotlin {
kotlinOptions.jvmTarget = "11"
kotlinOptions.jvmTarget = "17"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "11"
kotlinOptions.jvmTarget = "17"
}
intellij {
version = '2022.2'
version = '2022.3'
}
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.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.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 @@ -45,6 +45,6 @@
</action>
</actions>
<change-notes>
Fix compatibility issue. Plugin is now available for IDEA 2022.1
Fix compatibility issue. Plugin is now available for IDEA 2022.3
</change-notes>
</idea-plugin>

0 comments on commit 040b0b9

Please sign in to comment.