mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
15 lines
269 B
Groovy
15 lines
269 B
Groovy
apply plugin: 'java-library'
|
|
group = 'org.test.included'
|
|
version = '1.0'
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri(System.getProperty("org.nixos.gradle2nix.m2"))
|
|
allowInsecureProtocol true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.apache:foo:1.0.0'
|
|
}
|