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