Skip to content

Commit 953c760

Browse files
committed
bumping gradle to 8.10
1 parent c229232 commit 953c760

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

plugins/dataframe-gradle-plugin/src/test/kotlin/org/jetbrains/dataframe/gradle/makeProject.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import org.gradle.api.internal.project.ProjectInternal
88
import org.gradle.api.provider.Provider
99
import org.gradle.build.event.BuildEventsListenerRegistry
1010
import org.gradle.internal.service.DefaultServiceRegistry
11-
import org.gradle.internal.service.scopes.ProjectScopeServices
1211
import org.gradle.testfixtures.ProjectBuilder
1312
import org.gradle.tooling.events.OperationCompletionListener
1413
import java.lang.reflect.Field
@@ -26,8 +25,8 @@ internal fun makeProject(): ProjectInternal {
2625
*/
2726
internal fun addBuildEventsListenerRegistryMock(project: Project) {
2827
try {
29-
val projectScopeServices = (project as DefaultProject).services as ProjectScopeServices
30-
val state: Field = ProjectScopeServices::class.java.superclass.getDeclaredField("state")
28+
val projectScopeServices = (project as DefaultProject).services as DefaultServiceRegistry
29+
val state: Field = DefaultServiceRegistry::class.java.getDeclaredField("state")
3130
state.isAccessible = true
3231
@Suppress("UNCHECKED_CAST")
3332
val stateValue: AtomicReference<Any> = state.get(projectScopeServices) as AtomicReference<Any>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)