-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
55 lines (44 loc) · 1.32 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
wrapper {
gradleVersion = '7.6.1'
}
apply plugin: 'java'
apply plugin: 'eclipse'
if (project.hasProperty("topobyte")) {
apply from: 'file:///' + System.getProperty("user.home") \
+ '/.gradle/topobyte.gradle'
}
group = pGroup
version = pVersion
repositories {
maven {
url 'https://mvn.topobyte.de'
}
maven {
url 'https://mvn.slimjars.com'
}
mavenCentral()
}
dependencies {
implementation 'de.topobyte:osm4j-xml:1.2.0'
implementation 'de.topobyte:osm4j-pbf:1.2.0'
implementation 'de.topobyte:osm4j-tbo:1.2.0'
implementation 'de.topobyte:osm4j-geometry:1.2.0'
implementation 'de.topobyte:adt-geo:0.1.0'
implementation 'de.topobyte:jts2awt:0.1.0'
implementation 'de.topobyte:mercator-image:0.1.0'
implementation 'org.wololo:jts2geojson:0.14.3'
implementation 'org.apache.commons:commons-compress:1.8'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
implementation 'joda-time:joda-time:2.9.7'
implementation 'com.google.guava:guava:19.0'
implementation 'org.slf4j:slf4j-api:1.6.1'
runtimeOnly 'org.slf4j:slf4j-log4j12:1.6.1'
runtimeOnly 'log4j:log4j:1.2.16'
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}