mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
15 lines
244 B
Groovy
15 lines
244 B
Groovy
plugins {
|
|
id "java"
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri(System.getProperty("org.nixos.gradle2nix.m2"))
|
|
allowInsecureProtocol = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.apache:test-SNAPSHOT2:2.0.2-SNAPSHOT"
|
|
}
|