-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
58 lines (51 loc) · 1.98 KB
/
Copy pathbuild.gradle
File metadata and controls
58 lines (51 loc) · 1.98 KB
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.3.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'in.projecteka'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'javax.validation:validation-api:2.0.1.Final'
implementation 'io.vertx:vertx-pg-client:4.0.3'
implementation "io.projectreactor.rabbitmq:reactor-rabbitmq:1.4.3.RELEASE"
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.nimbusds:nimbus-jose-jwt:8.19'
compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
implementation 'org.springframework.data:spring-data-redis'
implementation 'org.jeasy:easy-random-core:4.2.0'
implementation 'io.lettuce:lettuce-core:5.3.2.RELEASE'
implementation 'net.logstash.logback:logstash-logback-encoder:6.4'
testImplementation "com.squareup.okhttp3:okhttp:4.8.0"
testImplementation "com.squareup.okhttp3:mockwebserver:4.8.0"
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.springframework.amqp:spring-rabbit-test'
testImplementation "com.squareup.okhttp3:okhttp:4.8.0"
testImplementation "com.squareup.okhttp3:mockwebserver:4.8.0"
}
test {
useJUnitPlatform()
}
task bootRunLocal {
bootRun.configure {
systemProperty "spring.profiles.active", 'local'
}
}
bootRunLocal.finalizedBy bootRun