mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 16:00:38 -05:00
17 lines
366 B
Kotlin
17 lines
366 B
Kotlin
plugins {
|
|
java
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri(System.getProperty("org.nixos.gradle2nix.m2"))
|
|
println(uri(System.getProperty("org.nixos.gradle2nix.m2")))
|
|
isAllowInsecureProtocol = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform("io.micrometer:micrometer-bom:1.5.1"))
|
|
implementation("io.micrometer:micrometer-core")
|
|
}
|