Skip to content

Commit

Permalink
fix the gradle syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
balda-rdx committed Oct 30, 2023
1 parent 84d17ae commit 254e3be
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions interop/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,18 @@ publishing {
version = providers.gradleProperty("ret-version").getOrNull()

from(components["java"])

licenses {
license {
name = "Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
license {
name = "Radix Eula"
url = "https://www.radixdlt.com/terms/genericEULA"
pom {
name = "Radix engine toolkit"
url = "https://github.com/radixdlt/radix-engine-toolkit"
licenses {
license {
name = "Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
eula {
name = "Radix Eula"
url = "https://www.radixdlt.com/terms/genericEULA"
}
}
}
}
Expand Down

0 comments on commit 254e3be

Please sign in to comment.