26 lines
520 B
Groovy
26 lines
520 B
Groovy
|
apply plugin: 'java'
|
||
|
apply plugin: 'javafx-gradle-plugin'
|
||
|
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
// Note that the test dependencies (junit, …) are inferred from the
|
||
|
// sourceSet.test of the core subproject
|
||
|
dependencies {
|
||
|
implementation 'com.jfoenix:jfoenix:8.0.7'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
jfx {
|
||
|
// minimal requirement for jfxJar-task
|
||
|
mainClass = 'de.vanitasvitae.fasel.sample.Main'
|
||
|
|
||
|
// minimal requirement for jfxNative-task
|
||
|
vendor = 'vanitasvitae'
|
||
|
}
|