-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (33 loc) · 1.6 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
plugins {
id 'org.springframework.boot' version '2.5.1-SNAPSHOT'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.chat'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation group: 'org.webjars', name: 'sockjs-client', version: '1.5.1'
implementation group: 'org.webjars', name: 'stomp-websocket', version: '2.3.4'
implementation group: 'org.webjars', name: 'webjars-locator', version: '0.41'
implementation group: 'org.springframework', name: 'spring-messaging', version: '5.3.8'
implementation group: 'org.springframework.security', name: 'spring-security-messaging', version: '5.5.0'
implementation group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity5', version: '3.0.4.RELEASE'
implementation group: 'org.webjars.npm', name: 'simple-peer', version: '9.7.0'
implementation group: 'org.aspectj', name: 'aspectjweaver', version: '1.9.6'
implementation group: 'org.projectlombok', name: 'lombok', version: '1.18.20'
implementation group: 'org.hibernate', name: 'hibernate-validator', version: '7.0.1.Final'
implementation group: 'com.h2database', name: 'h2', version: '1.4.200'
}
test {
useJUnitPlatform()
}