mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
20 lines
298 B
Groovy
20 lines
298 B
Groovy
package projects.s3.maven.groovy
|
|
|
|
plugins {
|
|
id('java')
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "s3://repositories/m2"
|
|
credentials(AwsCredentials) {
|
|
accessKey "foo"
|
|
secretKey "bar"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.apache:test:1.0.0")
|
|
}
|