Skip to content

Commit

Permalink
Gradle 8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Aug 14, 2024
1 parent d322cf0 commit 4e58259
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Gradle versions:

- minimum supported version (`8.2`, see `IntelliJPluginConstants.Constraints.getMINIMAL_GRADLE_VERSION`)
- latest GA (e.g., `8.9`)
- latest GA (e.g., `8.10`)
- RC of next GA (potentially)

When updating _latest GA_ version, adjust `exclude` section
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-integrationTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
gradleVersion:
- "8.2"
- "8.9"
- "8.10"
- "nightly"
os:
- windows-latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-unitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on: [ workflow_call ]

jobs:
baseUnitTest:
name: Gradle 8.9 @ ubuntu-latest
name: Gradle 8.10 @ ubuntu-latest
uses: ./.github/workflows/reusable-single-unitTest.yml
with:
gradleVersion: "8.9"
gradleVersion: "8.10"
os: ubuntu-latest

unitTests:
Expand All @@ -24,12 +24,12 @@ jobs:
matrix:
gradleVersion:
- "8.2"
- "8.9"
- "8.10"
- "nightly"
os:
- windows-latest
- ubuntu-latest
- macos-latest
exclude:
- os: ubuntu-latest
gradleVersion: "8.9"
gradleVersion: "8.10"
2 changes: 1 addition & 1 deletion .github/workflows/single-unitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
description: "Gradle Version"
required: true
type: string
default: "8.9"
default: "8.10"
os:
description: "Operation System"
required: true
Expand Down
2 changes: 1 addition & 1 deletion .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ project {
}

val operatingSystems = listOf("Linux", "Windows", "macOS")
val gradleVersions = listOf("8.2", "8.9")
val gradleVersions = listOf("8.2", "8.10")

val buildChain = sequential {
operatingSystems.forEach { os ->
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tags=intellij,jetbrains,idea
ossrhUsername=
ossrhPassword=

gradleVersion=8.9
gradleVersion=8.10

org.gradle.caching=true
#org.gradle.parallel=true
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://cache-redirector.jetbrains.com/services.gradle.org/distributions/gradle-8.9-all.zip
distributionUrl=https\://cache-redirector.jetbrains.com/services.gradle.org/distributions/gradle-8.10-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ abstract class PrepareSandboxTask : Sync(), IntelliJPlatformVersionAware, Sandbo
abstract val defaultDestinationDirectory: DirectoryProperty

/**
* The name of the plugin directory in the sandbox.
* Specifies the name of the plugin directory in the sandbox.
*
* Default value: [IntelliJPlatformExtension.projectName].
*/
Expand Down

0 comments on commit 4e58259

Please sign in to comment.