Add Snapshot maven repository (#829)

Signed-off-by: Marc Handalian <handalm@amazon.com>
This commit is contained in:
Marc Handalian 2021-06-10 14:07:48 -07:00 committed by GitHub
parent e7812cd882
commit dff274414d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -106,6 +106,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"
}
}
}
}
}