mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
15 lines
227 B
Kotlin
15 lines
227 B
Kotlin
plugins {
|
|
java
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri(System.getProperty("org.nixos.gradle2nix.m2"))
|
|
isAllowInsecureProtocol = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains:dummy:0.1.2")
|
|
}
|