Fasel/fasel-jfx/build.gradle

29 lines
688 B
Groovy
Raw Normal View History

2018-08-06 02:03:13 +02:00
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'
2018-09-15 22:59:08 +02:00
implementation 'de.jensd:fontawesomefx:8.9'
implementation 'javax.persistence:javax.persistence-api:2.2'
implementation 'com.j256.ormlite:ormlite-core:5.1'
2018-08-06 02:03:13 +02:00
}
repositories {
mavenLocal()
mavenCentral()
}
jfx {
// minimal requirement for jfxJar-task
mainClass = 'de.vanitasvitae.fasel.sample.Main'
// minimal requirement for jfxNative-task
vendor = 'vanitasvitae'
}