Temp
This commit is contained in:
parent
d086ce3b85
commit
bb7fcee47a
16 changed files with 270 additions and 25 deletions
|
@ -6,24 +6,32 @@ repositories {
|
|||
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'
|
||||
ext {
|
||||
smackVersion="4.4.0-alpha2-SNAPSHOT"
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
dependencies {
|
||||
|
||||
// Smack
|
||||
compile "org.igniterealtime.smack:smack-java7:$smackVersion"
|
||||
compile "org.igniterealtime.smack:smack-resolver-dnsjava:$smackVersion"
|
||||
compile "org.igniterealtime.smack:smack-tcp:$smackVersion"
|
||||
compile "org.igniterealtime.smack:smack-openpgp:$smackVersion"
|
||||
compile "org.igniterealtime.smack:smack-experimental:$smackVersion"
|
||||
|
||||
// JFX
|
||||
implementation 'com.jfoenix:jfoenix:8.0.7'
|
||||
implementation 'de.jensd:fontawesomefx:8.9'
|
||||
|
||||
// Database
|
||||
implementation 'javax.persistence:javax.persistence-api:2.2'
|
||||
implementation 'com.j256.ormlite:ormlite-core:5.1'
|
||||
implementation 'com.j256.ormlite:ormlite-jdbc:5.1'
|
||||
implementation 'com.h2database:h2:1.4.197'
|
||||
}
|
||||
|
||||
jfx {
|
||||
// minimal requirement for jfxJar-task
|
||||
mainClass = 'de.vanitasvitae.fasel.sample.Main'
|
||||
|
||||
// minimal requirement for jfxNative-task
|
||||
vendor = 'vanitasvitae'
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue