@react-native/gradle-plugin 0.80.0-rc.5 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native/gradle-plugin",
3
- "version": "0.80.0-rc.5",
3
+ "version": "0.80.1",
4
4
  "description": "Gradle Plugin for React Native",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -37,7 +37,7 @@ internal object DependencyUtils {
37
37
  }
38
38
  }
39
39
  // We add the snapshot for users on nightlies.
40
- mavenRepoFromUrl("https://oss.sonatype.org/content/repositories/snapshots/") { repo ->
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 ->
@@ -45,7 +45,7 @@ class DependencyUtilsTest {
45
45
 
46
46
  @Test
47
47
  fun configureRepositories_containsSnapshotRepo() {
48
- val repositoryURI = URI.create("https://oss.sonatype.org/content/repositories/snapshots/")
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://oss.sonatype.org/content/repositories/snapshots/")
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