-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
50 lines (38 loc) · 1.52 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
plugins {
id 'application'
id 'java'
id 'org.fulib.fulibGradle' version '0.5.0'
}
group 'ee.ut.sysmod21'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.fulib/fulibScenarios
fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.7.0'
// https://mvnrepository.com/artifact/org.fulib/fulibTools
testImplementation group: 'org.fulib', name: 'fulibTools', version: '1.5.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.4.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'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.11.3'
implementation 'com.sparkjava:spark-core:2.9.3'
implementation group: 'org.json', name: 'json', version: '20210307'
implementation group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.29'
implementation group: 'org.iban4j', name: 'iban4j', version: '3.2.3-RELEASE'
}
//test {
// useJUnitPlatform()
//}
generateScenarioSource {
classDiagramSVG = true
}
application {
mainClass = 'Main'
}