-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
57 lines (46 loc) · 1.6 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
plugins {
id 'com.github.johnrengelman.shadow' version '5.1.0'
id 'application'
}
group = 'org.liris.smartgov'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
maven {
// Used to fetch the SmartGovSimulator from GitHub
url 'https://jitpack.io'
}
}
dependencies {
implementation 'com.github.AlbanFl:SmartGovSimulator:master-SNAPSHOT'
implementation 'com.github.smartgov-liris:SmartGovOsmParser:-SNAPSHOT'
implementation 'org.apache.commons:commons-csv:1.6'
implementation 'org.locationtech.jts:jts-core:1.16.1'
implementation 'commons-cli:commons-cli:1.4'
implementation 'org.apache.logging.log4j:log4j-api:2.+'
implementation 'org.apache.logging.log4j:log4j-core:2.+'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.+'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'joda-time', name: 'joda-time', version: '2.3'
compile group: 'com.github.cliftonlabs', name: 'json-simple', version: '2.1.2'
testImplementation 'junit:junit:4.+'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation "org.mockito:mockito-core:2.+"
testImplementation "org.powermock:powermock-api-mockito2:2.0.2"
testImplementation "org.powermock:powermock-module-junit4:2.0.2"
}
javadoc.destinationDir = file("docs")
shadowJar {
archiveBaseName = "SmartGovLez"
archiveVersion = "MASTER"
archiveClassifier = ""
destinationDirectory = file("$rootDir")
}
application {
mainClassName = "org.liris.smartgov.lez.cli.Cli"
}
//si besoin d'afficher les logs & prit dans les tests
//test {
// testLogging.showStandardStreams = true
//}