Skip to content

Commit 7f93b66

Browse files
cortinicofacebook-github-bot
authored andcommitted
Gradle to 9.0 (#53281)
Summary: Pull Request resolved: #53281 This is still a of bumping Gradle to the latest Major (9.0) Full list of changes is here: https://gradle.org/whats-new/gradle-9/ I don't expect any breaking changes for React Native users. Changelog: [Android] [Breaking] - **deps:** Gradle to 9.0 Reviewed By: cipolleschi Differential Revision: D79445941 fbshipit-source-id: 0af495a2cc6bb4cca1e37d5f0693b77e42010df2
1 parent f502cae commit 7f93b66

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
1.65 KB
Binary file not shown.

packages/gradle-plugin/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

packages/gradle-plugin/gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

packages/gradle-plugin/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/tasks/internal/utils/PrefabPreprocessingEntryTest.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
package com.facebook.react.tasks.internal.utils
99

10-
import groovy.test.GroovyTestCase.assertEquals
10+
import org.assertj.core.api.Assertions.assertThat
1111
import org.junit.Test
1212

1313
class PrefabPreprocessingEntryTest {
@@ -20,8 +20,8 @@ class PrefabPreprocessingEntryTest {
2020
pathToPrefixCouple = "aPath" to "andAPrefix",
2121
)
2222

23-
assertEquals(1, sampleEntry.pathToPrefixCouples.size)
24-
assertEquals("aPath", sampleEntry.pathToPrefixCouples[0].first)
25-
assertEquals("andAPrefix", sampleEntry.pathToPrefixCouples[0].second)
23+
assertThat(sampleEntry.pathToPrefixCouples.size).isEqualTo(1)
24+
assertThat(sampleEntry.pathToPrefixCouples[0].first).isEqualTo("aPath")
25+
assertThat(sampleEntry.pathToPrefixCouples[0].second).isEqualTo("andAPrefix")
2626
}
2727
}
1.65 KB
Binary file not shown.

private/helloworld/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

private/helloworld/android/gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)