Skip to content

Commit

Permalink
Set default IntelliJ SDK & language level to the version specified in…
Browse files Browse the repository at this point in the history
… `gradle.properties` (#201)
  • Loading branch information
ChrisCarini authored Nov 15, 2023
1 parent 626e3f4 commit ca628ee
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build_standard_jetbrains_plugin_build.gradle
Original file line number Diff line number Diff line change
@@ -35,6 +35,14 @@ repositories {
mavenCentral()
}

idea {
project {
// Set default IntelliJ SDK & language level to the version specified in `gradle.properties`
jdkName = properties("javaVersion")
languageLevel = properties("javaVersion")
}
}

intellij {
pluginName.set(properties("pluginName"))
version.set(properties("platformVersion"))

0 comments on commit ca628ee

Please sign in to comment.