-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
52 lines (45 loc) · 1.64 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
plugins {
id 'org.springframework.boot' version '2.2.7.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'in.projecteka'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
task bootRunLocal {
bootRun.configure {
systemProperty "spring.profiles.active", 'local'
}
}
bootRunLocal.finalizedBy bootRun
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.nimbusds:nimbus-jose-jwt:8.15'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '2.3.3.RELEASE'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompile group: 'junit', name: 'junit', version: '4.12'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.jeasy:easy-random-core:4.2.0'
compile 'com.google.auth:google-auth-library-oauth2-http:0.21.1'
implementation 'com.google.apis:google-api-services-sheets:v4-rev581-1.25.0'
implementation 'org.liquibase:liquibase-core:4.0.0'
implementation('org.postgresql:postgresql')
implementation 'org.springframework.boot:spring-boot-starter-jdbc:2.3.2.RELEASE'
implementation 'io.vertx:vertx-pg-client:3.9.2'
}
test {
useJUnitPlatform()
}