-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (34 loc) · 1.26 KB
/
build.gradle
File metadata and controls
39 lines (34 loc) · 1.26 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
plugins {
id 'org.springframework.boot' version '2.4.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'net.andreinc.carsandpolice'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
maven {
url "https://packages.confluent.io/maven/"
}
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
implementation 'net.andreinc:mockneat:0.4.6'
implementation group: 'io.confluent.ksql', name: 'ksqldb-api-client', version: '6.1.0'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation group: 'io.netty', name: 'netty-resolver-dns-native-macos', version: '4.1.59.Final'
implementation group: 'org.webjars', name: 'sockjs-client', version:'1.1.2'
implementation group: 'org.webjars.npm', name: 'webstomp-client', version:'1.2.6'
implementation group: 'org.webjars', name: 'jquery', version:'3.4.1'
implementation group: 'org.webjars', name: 'bootstrap', version:'4.4.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
configurations {
all*.exclude module : 'spring-boot-starter-logging'
}
test {
useJUnitPlatform()
}