Add mavenLocal repo to allow for local dependency override (#1852)

This commit is contained in:
David Oguns 2022-10-17 14:03:42 -07:00 committed by GitHub
parent c5dae879a5
commit 9260781f45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -173,4 +173,10 @@ author = "hlbarber"
message = "Update aws-types zeroize to flexible version to prevent downstream version conflicts."
references = ["smithy-rs#1817"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "ethyi"
author = "ethyi"
[[smithy-rs]]
message = "Enable local maven repo dependency override."
references = ["smithy-rs#1852"]
meta = { "breaking" = false, "tada" = false, "bug" = false }
author = "ogudavid"

View File

@ -17,3 +17,11 @@ include(":aws:sdk-codegen")
include(":aws:sdk-adhoc-test")
include(":aws:sdk")
include(":aws:rust-runtime")
buildscript {
repositories {
mavenLocal()
mavenCentral()
google()
}
}