Skip to content

Commit

Permalink
Gradle 8.4-rc-3
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Oct 2, 2023
1 parent afd04d5 commit 79bb5d8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Gradle
uses: gradle/[email protected]
with:
gradle-version: 8.2.1
gradle-version: 8.4-rc-3
- run: "gradle build --warning-mode=fail -p 01_The_Settings_File/my-project"
- run: "gradle build --warning-mode=fail -p 02_The_Build_Files/my-project"
- run: "gradle build --warning-mode=fail -p 03_Plugins/my-project"
Expand All @@ -39,7 +39,7 @@ jobs:
- run: "gradle build --warning-mode=fail -p 18_Configuring_Testing/my-project"
- run: "gradle build --warning-mode=fail -p 19_The_Test_Task/my-project"
- run: "gradle build --warning-mode=fail -p 20_Test_Fixtures/my-project"
- run: "gradle build --warning-mode=fail -p 21_Test_and_Code_Coverage_Reporting/my-project"
- run: "gradle build --warning-mode=all -p 21_Test_and_Code_Coverage_Reporting/my-project"
- run: "gradle build --warning-mode=fail -p 22_The_JavaCompile_Task/my-project"
- run: "gradle build --warning-mode=fail -p 23_Caching/my-project"
- run: "gradle build --warning-mode=fail -p 24_Kotlin_DSL_and_Groovy_DSL/my-project"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
}

dependencies {
implementation("com.android.tools.build:gradle:8.0.0")
implementation("com.android.tools.build:gradle:8.2.0-beta06")
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import java.nio.file.Files
import org.gradle.api.plugins.jvm.internal.JvmEcosystemUtilities
import org.gradle.api.plugins.jvm.internal.JvmLanguageUtilities
import org.gradle.kotlin.dsl.support.serviceOf

plugins {
Expand All @@ -25,7 +25,7 @@ tasks.register<Jar>(extraFeature.jarTaskName) {
archiveClassifier.set("extra-feature")
}

val jvm = serviceOf<JvmEcosystemUtilities>()
val jvm = serviceOf<JvmLanguageUtilities>() // if this does not compile, use 'serviceOf<JvmEcosystemUtilities>()'
jvm.registerJvmLanguageSourceDirectory(sourceSets.main.get(), "java17") {
compiledWithJava {
javaCompiler.set(javaToolchains.compilerFor {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20-Beta2")
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
}

dependencies {
implementation("com.autonomousapps:dependency-analysis-gradle-plugin:1.20.0")
implementation("com.autonomousapps:dependency-analysis-gradle-plugin:1.24.0")
}

0 comments on commit 79bb5d8

Please sign in to comment.