mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
18 lines
276 B
Kotlin
18 lines
276 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")
|
|
}
|