mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 15:30:38 -05:00
17 lines
263 B
Groovy
17 lines
263 B
Groovy
plugins {
|
|
id('java')
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "s3://repositories/m2"
|
|
credentials(AwsCredentials) {
|
|
accessKey "foo"
|
|
secretKey "bar"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.apache:test:1.0.0")
|
|
} |