Skip to content

Commit

Permalink
Gradle - use JetBrains Runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Oct 6, 2023
1 parent 18b56ed commit cfafa01
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@

### Changed

- Upgrade Gradle Wrapper to `8.4`
- Gradle - use JetBrains Runtime
- Gradle - upgrade `org.gradle.toolchains.foojay-resolver-convention` to `0.7.0`
- Change since/until build to `223-233.*` (2022.3-2023.3.*)
- Dependencies - upgrade `org.jetbrains.intellij` to `1.16.0`
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.9.10`
- Dependencies - upgrade `org.jetbrains.changelog` to `2.2.0`
- Dependencies (GitHub Actions) - upgrade `actions/checkout` to `4`
- Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.2.6`
- Upgrade Gradle Wrapper to `8.4`
- Gradle - upgrade `org.gradle.toolchains.foojay-resolver-convention` to `0.7.0`

## [1.11.1] - 2023-08-17

Expand Down
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.gradle.internal.jvm.inspection.JvmVendor.KnownJvmVendor

Check warning on line 1 in build.gradle.kts

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Unused import directive

Unused import directive
import org.jetbrains.changelog.Changelog
import org.jetbrains.changelog.markdownToHTML

Expand Down Expand Up @@ -28,7 +29,10 @@ dependencies {

// Set the JVM language level used to build the project. Use Java 11 for 2020.3+, and Java 17 for 2022.2+.
kotlin {
jvmToolchain(17)
jvmToolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.JETBRAINS

Check warning on line 34 in build.gradle.kts

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Unstable API Usage

'JETBRAINS' is marked unstable with @Incubating
}
}

// Configure Gradle IntelliJ Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
Expand Down

0 comments on commit cfafa01

Please sign in to comment.