This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
60 lines (54 loc) · 2.2 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
59
60
buildscript {
ext {
springBootVersion = '2.1.2.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'io.pivotal'
version = '0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
bootRun {
// support passing -Dsystem.property=value to bootRun task
systemProperties = System.properties
}
dependencyManagement {
dependencies {
dependency('ch.qos.logback:logback-core:1.2.3')
}
}
dependencies {
annotationProcessor('org.projectlombok:lombok:1.18.4')
implementation('org.projectlombok:lombok:1.18.4')
implementation('org.springframework.boot:spring-boot-configuration-processor')
implementation('org.apache.commons:commons-lang3:3.7')
implementation('com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8')
implementation('org.springframework.credhub:spring-credhub-cloud-connector:2.0.0.RELEASE')
implementation('org.springframework.boot:spring-boot-starter-actuator')
implementation('org.springframework.boot:spring-boot-starter-webflux')
implementation('org.springframework.boot:spring-boot-starter-mail')
implementation('com.sendgrid:sendgrid-java:4.3.0')
implementation('org.springframework.boot:spring-boot-starter-data-mongodb-reactive')
implementation('com.github.davidmoten:rxjava2-jdbc:0.2.1')
implementation('org.springframework:spring-jdbc')
implementation('com.zaxxer:HikariCP:3.3.0')
implementation('org.hsqldb:hsqldb:2.4.1')
implementation('de.flapdoodle.embed:de.flapdoodle.embed.mongo:2.1.1')
implementation('org.cloudfoundry:cloudfoundry-client-reactor:3.15.0.RELEASE')
implementation('org.cloudfoundry:cloudfoundry-operations:3.15.0.RELEASE')
implementation('io.projectreactor:reactor-core:3.2.5.RELEASE')
implementation('io.projectreactor.ipc:reactor-netty:0.7.14.RELEASE')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('io.projectreactor:reactor-test')
}