Skip to content

Commit 9ce2cb9

Browse files
committed
build: fix build script
Fix setting the parent properties by explicitly setting them on the `project`.
1 parent a9ad115 commit 9ce2cb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compatibility/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repositories {
1313
val properties = Properties()
1414
properties.load(File(rootDir.parent, "gradle.properties").inputStream())
1515
for ((key, value) in properties) {
16-
this.ext[key.toString()] = value
16+
project.ext[key.toString()] = value
1717
}
1818

1919
val annotationsVersion: String by project

0 commit comments

Comments
 (0)