-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
63 lines (52 loc) · 1.55 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
60
61
62
63
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'jacoco'
group = 'edu.kit.ifv.mobitopp'
version = 0.1
wrapper.gradleVersion = '6.3'
sourceCompatibility = 1.12
targetCompatibility = 1.12
repositories {
jcenter()
mavenCentral()
maven { url "https://repo.osgeo.org/repository/release" }
}
configurations.all {
exclude group: 'xerces', module: 'xerces'
exclude group: 'kml', module: 'kml'
exclude group: 'javax.media', module: 'jai_core'
}
dependencies {
annotationProcessor 'org.projectlombok:lombok:1.18.8'
compileOnly 'org.projectlombok:lombok:1.18.8'
compile 'edu.kit.ifv.mobitopp:mobitopp:latest.integration',
'org.jvnet.ogc:kml-v_2_2_0:2.2.0',
'org.matsim:matsim:0.7.0'
testCompile 'junit:junit:4.12',
'org.hamcrest:hamcrest-all:1.3',
'org.mockito:mockito-core:2. '
}
eclipse.classpath {
downloadSources=true
}
task runPopulationSynthesis(type: JavaExec) {
args = ['data/population-synthesis.yaml']
main = "edu.kit.ifv.mobitopp.populationsynthesis.PopulationSynthesisMatsim"
}
task runSimulation(type: JavaExec) {
args = ['data/simulation.yaml']
main = "edu.kit.ifv.mobitopp.simulation.MobitoppMatsimCoupling"
}
task runMobitopp(type: JavaExec) {
args = ['data/simulation.yaml']
main = "edu.kit.ifv.mobitopp.simulation.OnlyMobiTopp"
}
tasks.withType(JavaExec) {
classpath = sourceSets.main.runtimeClasspath
dependsOn check
enableAssertions = "true"
group = "application"
maxHeapSize = "25G"
jvmArgs '-Xss512M'
}