mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 15:30:38 -05:00
12 lines
224 B
Kotlin
12 lines
224 B
Kotlin
plugins {
|
|
java
|
|
}
|
|
|
|
repositories {
|
|
maven { url = uri("http://localhost:9999") }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform("io.micrometer:micrometer-bom:1.5.1"))
|
|
implementation("io.micrometer:micrometer-core")
|
|
} |