-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (38 loc) · 1.43 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 'java'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral().content {
excludeModule("javax.media", "jai_core")
}
maven { url "https://maven.geotoolkit.org" }
maven { url "https://repo.osgeo.org/repository/release/" }
maven { url "https://repo.osgeo.org/repository/snapshot/" }
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.22'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
implementation 'commons-io:commons-io:2.6'
implementation 'org.apache.logging.log4j:log4j-api:2.17.0'
implementation 'org.apache.logging.log4j:log4j-core:2.17.0'
implementation 'org.apache.commons:commons-compress:1.21'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'org.gdal:gdal:3.3.0'
implementation 'org.geotools:gt-shapefile:27-SNAPSHOT'
implementation 'org.geotools:gt-geojson:27-SNAPSHOT'
implementation 'org.geotools:gt-geojsondatastore:27-SNAPSHOT'
implementation 'org.geotools:gt-epsg-hsql:27-SNAPSHOT'
annotationProcessor 'info.picocli:picocli-codegen:4.6.2'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
compileJava {
options.compilerArgs += ["-Aproject=${project.group}/${project.name}"]
}
test {
useJUnitPlatform()
}