From abfdef54a9f33a64227b09aa971120c794480ae7 Mon Sep 17 00:00:00 2001 From: Marc Handalian Date: Tue, 8 Jun 2021 16:31:48 -0700 Subject: [PATCH] Add Snapshot maven repository Signed-off-by: Marc Handalian --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index c98585e166e30..91fe04bd3ae0c 100644 --- a/build.gradle +++ b/build.gradle @@ -105,6 +105,14 @@ subprojects { name = 'test' url = "${rootProject.buildDir}/local-test-repo" } + maven { + name = 'Snapshots' + url = 'https://aws.oss.sonatype.org/content/repositories/snapshots' + credentials { + username "$System.env.SONATYPE_USERNAME" + password "$System.env.SONATYPE_PASSWORD" + } + } } } }