-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (40 loc) · 1.59 KB
/
build.gradle
File metadata and controls
47 lines (40 loc) · 1.59 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
plugins {
id 'org.springframework.boot' version '2.4.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = "org.shreyas.messaging"
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.kafka:spring-kafka'
implementation group: 'com.google.guava', name: 'guava', version: '11.0.2'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
runtimeOnly 'org.postgresql:postgresql'
testImplementation group: 'junit', name: 'junit', version: '4.13'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.kafka:spring-kafka-test'
testImplementation 'com.playtika.testcontainers:embedded-postgresql:1.43'
testImplementation 'org.testcontainers:testcontainers:1.12.5'
testImplementation 'org.testcontainers:postgresql:1.12.5'
testImplementation 'io.rest-assured:rest-assured-all:4.3.0'
testImplementation 'io.rest-assured:spring-mock-mvc:4.3.0'
testImplementation "org.mockito:mockito-core:3.8.0"
testImplementation "org.mockito:mockito-inline:3.8.0"
testImplementation('org.mockito:mockito-junit-jupiter:2.18.3')
}