mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
16 lines
245 B
Kotlin
16 lines
245 B
Kotlin
|
|
plugins {
|
|
java
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri(System.getProperty("org.nixos.gradle2nix.m2"))
|
|
isAllowInsecureProtocol = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
"implementation"("org.apache:test-SNAPSHOT1:2.0.2-SNAPSHOT")
|
|
}
|