-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (47 loc) · 2.24 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
43
44
45
46
47
48
49
50
51
52
53
plugins {
id 'java'
id 'org.springframework.boot' version '2.6.10'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
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', version: '2.5.6'
// implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
implementation 'org.jsoup:jsoup:1.13.1' // about crawling
implementation 'org.bouncycastle:bcprov-jdk15on:1.70' // naver search ad api의 signature에 필요 -> latest and most
implementation 'com.mashape.unirest:unirest-java:1.4.9' // naver search ad api의 restclient에 필요 -> latest and most
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3' // json 파싱 라이브러리
implementation 'org.seleniumhq.selenium:selenium-java:3.141.59' // selenium 라이브러리
implementation 'io.github.bonigarcia:webdrivermanager:3.8.1' // selenium 관련 라이브러리
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310' // java LocalDateTime 직렬화/역직렬화 에러 해결용도
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
// JWT
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
implementation 'commons-codec:commons-codec:1.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
implementation 'com.auth0:java-jwt:3.13.0'
}
tasks.named('test') {
useJUnitPlatform()
}