Initial commit

This commit is contained in:
Paul Schaub 2018-08-06 02:03:13 +02:00
commit 77c8782026
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
20 changed files with 1292 additions and 0 deletions

26
fasel-jfx/build.gradle Normal file
View file

@ -0,0 +1,26 @@
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'
}