mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
13 lines
247 B
Kotlin
13 lines
247 B
Kotlin
plugins {
|
|
java
|
|
}
|
|
|
|
repositories {
|
|
maven { url = uri(System.getProperty("org.nixos.gradle2nix.m2")) }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform("io.micrometer:micrometer-bom:1.5.1"))
|
|
implementation("io.micrometer:micrometer-core")
|
|
}
|