Skip to content

Commit

Permalink
Test 2 repositories sections
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <cwperx@amazon.com>
  • Loading branch information
cwperks committed Feb 5, 2025
1 parent 987f4d4 commit 5185992
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ updates:
labels:
- "dependabot"
- "dependencies"
- "testing"
version: 2
17 changes: 16 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,22 @@ configure(allprojects - project(':distribution:archives:integ-test-zip')) {
}
}

repositories {
mavenCentral()
maven {
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"
}
}
}

subprojects {
// Default to the apache license
project.ext.licenseName = 'The Apache Software License, Version 2.0'
Expand Down Expand Up @@ -119,7 +135,6 @@ subprojects {
}
}
repositories {
mavenCentral()
maven {
name = 'test'
url = "${rootProject.buildDir}/local-test-repo"
Expand Down

0 comments on commit 5185992

Please sign in to comment.