mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-26 05:26:45 +00:00
24 lines
536 B
Groovy
24 lines
536 B
Groovy
plugins {
|
|
id 'java-gradle-plugin' // so we can assign and ID to our plugin
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.gradle:osdetector-gradle-plugin:1.7.3'
|
|
implementation 'org.javamodularity:moduleplugin:1.8.14'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("org-openjfx-javafxplugin") {
|
|
id = "org-openjfx-javafxplugin"
|
|
implementationClass = "org.openjfx.gradle.JavaFXPlugin"
|
|
}
|
|
}
|
|
}
|