We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9964fb8 commit 4044c22Copy full SHA for 4044c22
build.gradle
@@ -92,6 +92,22 @@ configure(allprojects - project(':distribution:archives:integ-test-zip')) {
92
}
93
94
95
+repositories {
96
+ mavenCentral()
97
+ maven {
98
+ name = 'test'
99
+ url = "${rootProject.buildDir}/local-test-repo"
100
+ }
101
102
+ name = 'Snapshots'
103
+ url = 'https://aws.oss.sonatype.org/content/repositories/snapshots'
104
+ credentials {
105
+ username = "$System.env.SONATYPE_USERNAME"
106
+ password = "$System.env.SONATYPE_PASSWORD"
107
108
109
+}
110
+
111
subprojects {
112
// Default to the apache license
113
project.ext.licenseName = 'The Apache Software License, Version 2.0'
0 commit comments