Skip to content

Commit

Permalink
chore: fix build.gradle.kts file after merging
Browse files Browse the repository at this point in the history
Signed-off-by: Yurii Shynbuiev <[email protected]>
  • Loading branch information
yshyn-iohk committed Aug 7, 2024
1 parent 06e7e89 commit 460c07d
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ allprojects {
organization.set("IOG")
roles.add("developer")
}
developer {
id.set("yshyn-iohk")
name.set("Yurii Shynbuiev")
email.set("[email protected]")
organization.set("IOG")
roles.add("developer")
}
}
scm {
connection.set("scm:git:git://[email protected]/hyperledger/identus-apollo.git")
Expand All @@ -117,14 +124,12 @@ allprojects {
}
}

signing {
useInMemoryPgpKeys(
project.findProperty("signing.signingSecretKey") as String? ?: System.getenv("OSSRH_GPG_SECRET_KEY"),
project.findProperty("signing.signingSecretKeyPassword") as String? ?: System.getenv("OSSRH_GPG_SECRET_KEY_PASSWORD")
)
sign(this@withType)
}
}
signing {
useInMemoryPgpKeys(
project.findProperty("signing.signingSecretKey") as String? ?: System.getenv("OSSRH_GPG_SECRET_KEY"),
project.findProperty("signing.signingSecretKeyPassword") as String? ?: System.getenv("OSSRH_GPG_SECRET_KEY_PASSWORD")
)
sign(this@withType)
}
}
}
Expand Down Expand Up @@ -153,7 +158,7 @@ subprojects {
}
exclude {
it.file.toString() == "BNjs.kt" || it.file.toString() == "Curve.kt" || it.file.toString() == "PresetCurve.kt" ||
it.file.toString() == "Ellipticjs.kt" || it.file.toString() == "secp256k1js.kt"
it.file.toString() == "Ellipticjs.kt" || it.file.toString() == "secp256k1js.kt"
}
exclude {
it.file.toString().contains("external")
Expand Down

0 comments on commit 460c07d

Please sign in to comment.