-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
48 lines (37 loc) · 1.03 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
buildscript {
ext {
springBootVersion = '1.5.4.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
group 'io.greennav.routing'
version = '0.0.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
repositories {
mavenCentral()
maven {
url "http://mvn.topobyte.de"
}
}
dependencies {
// Spring
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
// OSM
compile group: 'org.openstreetmap.osmosis', name: 'osmosis-core', version: '0.46'
compile group: 'org.openstreetmap.osmosis', name: 'osmosis-pbf', version: '0.46'
compile 'org.openstreetmap.osmosis:osmosis-osm-binary:0.46'
// Jgrapht
compile('org.jgrapht:jgrapht-ext:1.0.1')
// Server
compile group: 'com.google.code.gson', name: 'gson', version: '2.3.1'
compile "com.sparkjava:spark-core:2.6.0"
// Testing
testCompile group: 'junit', name: 'junit', version: '4.12'
}