@react-native/gradle-plugin 0.80.0 → 0.80.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/react-native-gradle-plugin/src/main/kotlin/com/facebook/react/utils/DependencyUtils.kt
CHANGED
|
@@ -37,7 +37,7 @@ internal object DependencyUtils {
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
// We add the snapshot for users on nightlies.
|
|
40
|
-
mavenRepoFromUrl("https://
|
|
40
|
+
mavenRepoFromUrl("https://central.sonatype.com/repository/maven-snapshots/") { repo ->
|
|
41
41
|
repo.content { it.excludeGroup("org.webkit") }
|
|
42
42
|
}
|
|
43
43
|
repositories.mavenCentral { repo ->
|
package/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/utils/DependencyUtilsTest.kt
CHANGED
|
@@ -45,7 +45,7 @@ class DependencyUtilsTest {
|
|
|
45
45
|
|
|
46
46
|
@Test
|
|
47
47
|
fun configureRepositories_containsSnapshotRepo() {
|
|
48
|
-
val repositoryURI = URI.create("https://
|
|
48
|
+
val repositoryURI = URI.create("https://central.sonatype.com/repository/maven-snapshots/")
|
|
49
49
|
val project = createProject()
|
|
50
50
|
|
|
51
51
|
configureRepositories(project)
|
|
@@ -176,7 +176,7 @@ class DependencyUtilsTest {
|
|
|
176
176
|
|
|
177
177
|
@Test
|
|
178
178
|
fun configureRepositories_snapshotRepoHasHigherPriorityThanMavenCentral() {
|
|
179
|
-
val repositoryURI = URI.create("https://
|
|
179
|
+
val repositoryURI = URI.create("https://central.sonatype.com/repository/maven-snapshots/")
|
|
180
180
|
val mavenCentralURI = URI.create("https://repo.maven.apache.org/maven2/")
|
|
181
181
|
val project = createProject()
|
|
182
182
|
|