-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (57 loc) · 1.92 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
58
plugins {
id 'org.springframework.boot' version '2.4.0'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
id 'groovy'
}
group = 'com.ride2go'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
maven { url 'https://repo.spring.io/milestone' }
mavenCentral()
}
ext {
set('springCloudVersion', "2020.0.0-M5")
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.cloud:spring-cloud-starter-circuitbreaker-reactor-resilience4j'
// routing with GraphHopper
implementation 'com.graphhopper:directions-api-client:0.10.0'
// for openrouteservice routing response model
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
// for XML WebClient response in OpenStreetMap node service
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'javax.activation:activation:1.1.1'
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.3'
// write GTFS
implementation 'org.onebusaway:onebusaway-gtfs:1.3.4'
// delete directory
implementation 'commons-io:commons-io:2.8.0'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.codehaus.groovy:groovy:3.0.6'
testImplementation 'org.codehaus.groovy:groovy-all:3.0.6'
testImplementation 'org.spockframework:spock-spring:2.0-M4-groovy-3.0'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
bootJar {
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
}
test {
useJUnitPlatform()
}