-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (45 loc) · 2.1 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
53
54
55
56
57
58
59
plugins {
id 'java'
// https://plugins.gradle.org/plugin/org.fulib.fulibGradle
id 'application'
id 'org.fulib.fulibGradle' version '0.4.0'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
group = 'de.uniks.pmws2021.model'
version = '0.1.0'
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
javafx {
version = "12"
modules = ['javafx.graphics', 'javafx.fxml', 'javafx.base', 'javafx.controls']
}
dependencies {
testImplementation 'org.testfx:testfx-junit:4.0.16-alpha'
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/org.fulib/fulibScenarios
fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.6.2'
// https://mvnrepository.com/artifact/org.fulib/fulibTools
testImplementation group: 'org.fulib', name: 'fulibTools', version: '1.4.1'
// https://mvnrepository.com/artifact/org.fulib/fulibTables
testImplementation group: 'org.fulib', name: 'fulibTables', version: '1.4.0'
// https://mvnrepository.com/artifact/org.fulib/fulibMockups
testImplementation group: 'org.fulib', name: 'fulibMockups', version: '0.2.0'
// https://mvnrepository.com/artifact/junit/junit
testImplementation group: 'junit', name: 'junit', version: '4.13'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-nop
testImplementation group: 'org.slf4j', name: 'slf4j-nop', version: '1.7.30'
// https://mvnrepository.com/artifact/org.fulib/fulibYaml
implementation group: 'org.fulib', name: 'fulibYaml', version: '1.4.0'
implementation group: 'com.konghq', name:'unirest-java', version: '2.3.02'
implementation group: 'javax.websocket', name: 'javax.websocket-api', version: '1.1'
implementation group: 'com.sparkjava', name: 'spark-core', version: '2.9.1'
implementation group: 'org.glassfish', name: 'javax.json', version: '1.1'
implementation group: 'org.glassfish.tyrus', name: 'tyrus-client', version: '1.15'
implementation group: 'org.glassfish.tyrus', name: 'tyrus-container-grizzly-client', version: '1.15'
}
generateScenarioSource {
classDiagramSVG = true
}