mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
14 lines
272 B
Groovy
14 lines
272 B
Groovy
apply plugin: 'java'
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri(System.getProperty("org.nixos.gradle2nix.m2"))
|
|
allowInsecureProtocol true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.test.included:included-child'
|
|
implementation 'org.apache:test:1.0.0'
|
|
}
|