-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 1.32 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.0'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
group 'org.slack-task-train'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
sourceCompatibility = 1.11
targetCompatibility = 1.11
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
testImplementation 'org.mockito:mockito-junit-jupiter:4.5.1'
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.0'
implementation 'org.springframework.boot:spring-boot-configuration-processor:2.7.0'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.0'
implementation 'com.h2database:h2:2.1.212'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation 'org.projectlombok:lombok:1.18.24'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'com.slack.api:bolt-socket-mode:1.22.1'
implementation 'javax.websocket:javax.websocket-api:1.1'
implementation 'org.glassfish.tyrus.bundles:tyrus-standalone-client:1.17'
implementation 'org.reflections:reflections:0.10.2'
}
test {
useJUnitPlatform()
}
java {
withSourcesJar()
}