Skip to content

Commit

Permalink
chore(deps): update dependency gradle to v8.10 (#1231)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency gradle to v8.10

* build: resolve compilation warns

Signed-off-by: Kengo TODA <[email protected]>

* build: run build with Java 17

Signed-off-by: Kengo TODA <[email protected]>

* ci: keep all running workflows even when one of them failed

Signed-off-by: Kengo TODA <[email protected]>

* test: drop all needless IgnoreIf annotations

Signed-off-by: Kengo TODA <[email protected]>

* Revert "test: drop all needless IgnoreIf annotations"

This reverts commit 21eb4d0.

---------

Signed-off-by: Kengo TODA <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Kengo TODA <[email protected]>
  • Loading branch information
renovate[bot] and KengoTODA authored Sep 9, 2024
1 parent 78e32ff commit b56294b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## How to hack this project

Make sure you have Java 11+, Node.js 12+ and NPM on your `PATH`.
Make sure you have Java 17+, Node.js 12+ and NPM on your `PATH`.

Before you start hacking, run `npm install` once to install development toolchain
to follow [the Conventional Commits](https://conventionalcommits.org/).
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
build:
strategy:
fail-fast: false
matrix:
gradle: [ '7.6.3', '8.1', 'current' ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
Expand Down
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import io.gitlab.arturbosch.detekt.Detekt
import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
Expand All @@ -19,7 +20,7 @@ plugins {

java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
languageVersion = JavaLanguageVersion.of(17)
}
}

Expand Down Expand Up @@ -54,7 +55,9 @@ tasks {
options.release.set(8)
}
withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "1.8"
compilerOptions {
jvmTarget = JvmTarget.JVM_1_8
}
}
named<Detekt>("detekt") {
reports {
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\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit b56294b

Please sign in to comment.