mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
plugin: Support S3 repositories
This commit is contained in:
17
fixtures/s3/maven-snapshot/groovy/build.gradle
Normal file
17
fixtures/s3/maven-snapshot/groovy/build.gradle
Normal file
@@ -0,0 +1,17 @@
|
||||
plugins {
|
||||
id('java')
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url "s3://repositories/m2"
|
||||
credentials(AwsCredentials) {
|
||||
accessKey "foo"
|
||||
secretKey "bar"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.apache:test-SNAPSHOT1:2.0.0-SNAPSHOT")
|
||||
}
|
||||
0
fixtures/s3/maven-snapshot/groovy/settings.gradle
Normal file
0
fixtures/s3/maven-snapshot/groovy/settings.gradle
Normal file
Reference in New Issue
Block a user