Unverified Commit 9260781f authored by David Oguns's avatar David Oguns Committed by GitHub
Browse files

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

parent c5dae879
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -174,3 +174,9 @@ message = "Update aws-types zeroize to flexible version to prevent downstream ve
references = ["smithy-rs#1817"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "ethyi"

[[smithy-rs]]
message = "Enable local maven repo dependency override."
references = ["smithy-rs#1852"]
meta = { "breaking" = false, "tada" = false, "bug" = false }
author = "ogudavid"
+8 −0
Original line number Diff line number Diff line
@@ -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()
    }
}