-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
52 lines (43 loc) · 1.18 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
plugins {
// The OpenJFX plugin does not work before Java 11, so we apply it conditionally in an if block further below.
id "org.openjfx.javafxplugin" version "0.0.6" apply false
}
apply plugin: "java"
apply plugin: "application"
apply plugin: "eclipse"
group 'de.hhu.stups'
version '0.3.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
name "Releases"
url "https://oss.sonatype.org/content/repositories/releases"
}
}
dependencies {
compile "de.hhu.stups:virtual-kata-lib:2.0.0"
compile "org.sonatype.nexus:google-guava-eventbus:3.0.0-03"
compile "org.fxmisc.richtext:richtextfx:0.6.10"
compile 'ch.qos.logback:logback-core:0.9.29'
compile 'ch.qos.logback:logback-classic:0.9.29'
compile 'com.google.inject:guice:4.1.0'
compile 'com.mashape.unirest:unirest-java:1.4.9'
compile 'org.jsoup:jsoup:1.9.2'
compile 'com.google.code.gson:gson:2.7'
}
if (JavaVersion.current().java11Compatible) {
apply plugin: "org.openjfx.javafxplugin"
javafx {
modules = [
"javafx.base",
"javafx.controls",
"javafx.fxml",
"javafx.graphics",
"javafx.web",
]
}
}
mainClassName = "tddtrainer.Startup"
// jar.archiveName = 'dojo.jar'