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' implementation 'de.jensd:fontawesomefx:8.9' implementation 'javax.persistence:javax.persistence-api:2.2' implementation 'com.j256.ormlite:ormlite-core:5.1' } repositories { mavenLocal() mavenCentral() } jfx { // minimal requirement for jfxJar-task mainClass = 'de.vanitasvitae.fasel.sample.Main' // minimal requirement for jfxNative-task vendor = 'vanitasvitae' }