File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.11 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.12 -bin.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 1
- plugins {
2
- id(" build.logic" ) apply false
1
+ buildscript {
2
+ dependencies {
3
+ classpath(" com.apollographql.apollo.build:build-logic" )
4
+ }
5
+ repositories {
6
+ /*
7
+ * This duplicates the repositories in repositories.gradle.kts but I haven't found a way to make it work otherwise
8
+ * See https://github.com/gradle/gradle/issues/32045
9
+ */
10
+ mavenCentral()
11
+ google()
12
+ gradlePluginPortal()
13
+ }
3
14
}
4
-
5
15
val ciBuild = tasks.register(" ciBuild" ) {
6
16
description = """ Execute the 'build' task in subprojects and the `termination:run` task too"""
7
17
subprojects {
Original file line number Diff line number Diff line change 1
- pluginManagement {
2
- includeBuild(" ../build-logic" )
3
- }
4
-
5
1
plugins {
6
2
id(" com.gradle.develocity" ) version " 3.19" // sync with libraries.toml
7
3
id(" com.gradle.common-custom-user-data-gradle-plugin" ) version " 2.0.2"
@@ -27,6 +23,7 @@ rootProject.projectDir
27
23
}
28
24
29
25
includeBuild(" ../" )
26
+ includeBuild(" ../build-logic" )
30
27
31
28
dependencyResolutionManagement {
32
29
versionCatalogs {
You can’t perform that action at this time.
0 commit comments