Skip to content

Commit

Permalink
Update version and build system
Browse files Browse the repository at this point in the history
  • Loading branch information
halirutan committed Oct 1, 2022
1 parent e7c0bcd commit 5cb6b44
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ fun properties(key: String) = project.findProperty(key).toString()

plugins {
java
id("org.jetbrains.intellij") version "1.8.1"
id("org.jetbrains.intellij") version "1.9.0"
id("org.jetbrains.changelog") version "1.3.1"
}

Expand All @@ -13,6 +13,12 @@ repositories {
mavenCentral()
}

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}

sourceSets {
main {
java.srcDir("src")
Expand Down Expand Up @@ -64,8 +70,8 @@ tasks {

withType<JavaCompile> {
options.encoding = "UTF-8"
sourceCompatibility = "11"
targetCompatibility = "11"
// sourceCompatibility = JavaVersion.VERSION_17
// targetCompatibility = JavaVersion.VERSION_17
options.compilerArgs.add("-Xlint:all")
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
kpxPluginGroup=de.halirutan.keypromoterx
kpxPluginName=Key-Promoter-X
kpxPluginVersion=2022.2.2
kpxPluginVersion=2022.3
kpxPluginSinceBuild=222
kpxPluginUntilBuild=222.*
kpxPluginUntilBuild=223.*
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions
kpxPluginVerifierIdeVersions=IC-222.3345.118
kpxPluginVerifierIdeVersions=IC-223.4884.69
platformType=IC
platformVersion=2022.2.1
platformVersion=2022.2.2
platformDownloadSources=true
gradleVersion=7.5.1
# suppress inspection "WrongPropertyKeyValueDelimiter"
Expand Down

0 comments on commit 5cb6b44

Please sign in to comment.