-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
128 lines (98 loc) · 3.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.10'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
def reactDir = "$projectDir/src/main/reactfront";
sourceSets{
main{
resources{
srcDirs = ["$projectDir/src/main/resources/"]
}
}
}
processResources{
dependsOn "copyReactBuildFiles"
}
task installReact(type:Exec){
workingDir "$reactDir"
inputs.dir "$reactDir"
group = BasePlugin.BUILD_GROUP
if(System.getProperty('os.name').toLowerCase(Locale.ROOT).contains('windows')){
commandLine "npm.cmd", "audit", "fix"
commandLine 'npm.cmd', 'install'
}else{
commandLine "npm", "audit", "fix"
commandLine 'npm', 'install'
}
}
task buildReact(type:Exec){
dependsOn "installReact"
workingDir "$reactDir"
inputs.dir "$reactDir"
group = BasePlugin.BUILD_GROUP
if(System.getProperty('os.name').toLowerCase(Locale.ROOT).contains('windows')){
commandLine "npm.cmd", "run-script", "build"
}else{
commandLine "npm", "run-script", "build"
}
}
task copyReactBuildFiles(type:Copy){
dependsOn "buildReact"
from "$reactDir/build"
into "$projectDir/src/main/resources/static"
}
group = 'com.in4mation'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '11'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// spring
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.jetbrains:annotations:20.1.0'
implementation 'org.jetbrains:annotations:20.1.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compileOnly 'org.springframework.boot:spring-boot-devtools'
// database
runtimeOnly 'com.mysql:mysql-connector-j'
// ORM 우리는 Mybatis로 간다!!!
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.3'
// lombok
implementation 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok'
//tomcat
implementation 'org.springframework.boot:spring-boot-starter-tomcat'
//JSON
implementation 'org.json:json:20230227'
//시큐리티
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.google.code.gson:gson:2.8.9'
//thymeleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
//이메일 인증 구현
//implementation group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '3.0.5'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'javax.mail:javax.mail-api:1.6.2'
implementation group: 'com.sun.mail', name: 'javax.mail', version: '1.6.2'
// jjwt 라이브러리 추가
implementation 'io.jsonwebtoken:jjwt-api:0.11.2' // API 의존성 추가
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2' // 구현 의존성 추가
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.11.2') { exclude group: 'org.json', module: 'json' } // JSON 처리 의존성 추가
// 부트스트랩
implementation 'org.webjars:bootstrap:4.5.2'
testImplementation 'org.springframework.security:spring-security-test'
}
tasks.named('test') {
useJUnitPlatform()
}