-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (46 loc) · 1007 Bytes
/
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
plugins {
id 'java-library'
id 'distribution'
}
group 'org.citydb.ade'
version '1.1.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
configurations {
citygml4j
}
repositories {
maven {
url 'https://3dcitydb.org/maven'
}
maven {
url 'https://repo.osgeo.org/repository/release'
}
mavenCentral()
}
dependencies {
api 'org.citydb:impexp-client-gui:5.5.0'
api 'org.citygml4j.ade:quality-ade-citygml4j:1.1.0'
citygml4j('org.citygml4j.ade:quality-ade-citygml4j:1.1.0') {
transitive = false
}
}
distributions.main {
distributionBaseName = 'quality-ade'
contents {
from 'README.md'
into('lib') {
from jar
from configurations.citygml4j
}
into('schema-mapping') {
from "$rootDir/resources/database/schema-mapping"
}
into('3dcitydb') {
from "$rootDir/resources/database/3dcitydb"
}
}
}