forked from KW-PET/PET-iOS-back
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (41 loc) · 1.51 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
plugins {
id 'org.springframework.boot' version '2.7.4'
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
id 'java'
}
group = 'com.kw'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
compileJava.options.encoding = 'UTF-8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// implementation 'org.jetbrains:annotations:23.0.0'
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'junit:junit:4.13.2'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//jwt 라이브러리
implementation 'io.jsonwebtoken:jjwt:0.9.1'
//swagger
implementation 'io.springfox:springfox-boot-starter:3.0.0'
// implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation group: 'org.springframework.security.oauth', name: 'spring-security-oauth2', version: '2.3.5.RELEASE'
implementation 'com.google.code.gson:gson:2.9.0'
implementation group : 'org.javassist', name:'javassist', version:'3.15.0-GA'
implementation("com.fasterxml.jackson.datatype:jackson-datatype-hibernate5")
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
}
tasks.named('test') {
useJUnitPlatform()
}