Skip to content

Commit 51156fd

Browse files
committed
[LOCAL] Fix broken build of RNGP due to complex cherry-pick
1 parent c8cb3d4 commit 51156fd

File tree

4 files changed

+3
-0
lines changed

4 files changed

+3
-0
lines changed

packages/react-native-gradle-plugin/gradle/libs.versions.toml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ guava = "31.0.1-jre"
55
javapoet = "1.13.0"
66
junit = "4.13.2"
77
kotlin = "1.9.24"
8+
assertj = "3.25.1"
89

910
[libraries]
1011
kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
@@ -13,6 +14,7 @@ gson = { module = "com.google.code.gson:gson", version.ref = "gson" }
1314
guava = { module = "com.google.guava:guava", version.ref = "guava" }
1415
javapoet = { module = "com.squareup:javapoet", version.ref = "javapoet" }
1516
junit = {module = "junit:junit", version.ref = "junit" }
17+
assertj = { module = "org.assertj:assertj-core", version.ref = "assertj" }
1618

1719
[plugins]
1820
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }

packages/react-native-gradle-plugin/react-native-gradle-plugin/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ dependencies {
5050
implementation(libs.javapoet)
5151

5252
testImplementation(libs.junit)
53+
testImplementation(libs.assertj)
5354
testImplementation(project(":shared-testutil"))
5455

5556
testRuntimeOnly(

0 commit comments

Comments
 (0)