-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
63 lines (52 loc) · 2.33 KB
/
build.gradle
File metadata and controls
63 lines (52 loc) · 2.33 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
59
60
61
62
63
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.8'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'com.sparta'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation'
implementation 'org.springframework.session:spring-session-core'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation group: 'org.json', name: 'json', version: '20220924'
compileOnly group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.2'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.2'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.2'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// Swagger
implementation 'org.springdoc:springdoc-openapi-ui:1.6.6'
// Selenium
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.8.1'
implementation group: 'org.seleniumhq.selenium', name: 'selenium-chrome-driver', version: '4.8.1'
implementation group: 'org.seleniumhq.selenium', name: 'selenium-chromium-driver', version: '4.8.1'
implementation group: 'org.seleniumhq.selenium', name: 'selenium-remote-driver', version: '4.8.1'
implementation group: 'io.appium', name: 'java-client', version: '8.3.0'
implementation group: 'org.seleniumhq.selenium', name: 'selenium-api', version: '4.8.1'
// implementation group: 'io.appium', name: 'java-client', version: '7.6.0'
// implementation group: 'org.seleniumhq.selenium', name: 'selenium-devtools-v110', version: '4.8.1'
}
// plain jar를 안만들게끔 하는 dependency -> CI/CD 옵션
jar {
enabled = false
}
tasks.named('test') {
useJUnitPlatform()
}