Files
gradle2nix/fixtures/projects/dependency/snapshot/groovy/build.gradle
2024-05-17 14:52:02 -07:00

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"
}