Skip to content

Commit

Permalink
update kts build
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Feb 3, 2025
1 parent 4f1fcec commit 06b4164
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,20 @@
//val junitVersion = "5.11.4"
//val bcVersion = "1.80"
//
//val requires = "[2.1, " + gsonVersion + "]" // cap the require at the preferred version
//val runtimeRange = "[2.1,)" // allow later versions at runtime
//
//dependencies {
// implementation("com.google.code.gson:gson:$gsonVersion") {
// version {
// strictly(gsonVersion)
// require(requires) // published in "dependencies"
// }
// exclude(group = "com.google.errorprone", module = "error_prone_annotations")
// }
// constraints {
// implementation("com.google.code.gson:gson") {
// implementation("com.google.code.gson:gson:") {
// version {
// require("[2.1,)")
// require(runtimeRange) // published in "dependencyConstraints" / "<dependencyManagement>"
// }
// }
// }
Expand Down

0 comments on commit 06b4164

Please sign in to comment.