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