-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
115 lines (93 loc) · 3.72 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
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.hibernate:hibernate-gradle-plugin:5.4.31.Final"
}
}
plugins {
id 'org.springframework.boot' version '2.5.0'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'org.asciidoctor.jvm.convert' version '3.3.2'
}
group = 'com.seoultech'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
// asciidoctorExt
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
//ext {
// snippetsDir = file('build/generated-snippets')
//}
apply plugin: 'org.hibernate.orm'
hibernate {
enhance {
enableLazyInitialization = true
enableDirtyTracking = true
enableAssociationManagement = true
enableExtendedEnhancement = false
}
}
//test {
// outputs.dir snippetsDir
// useJUnitPlatform()
//}
//
//asciidoctor {
// configurations 'asciidoctorExt'
// inputs.dir snippetsDir
// dependsOn test
//}
//bootJar {
// dependsOn asciidoctor
// copy {
// from "${asciidoctor.outputDir}"
// into 'src/main/resources/static/docs'
// }
//}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-batch'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation group: 'org.sejda.imageio', name: 'webp-imageio', version: '0.1.6'
implementation group: 'net.coobird', name: 'thumbnailator', version: '0.4.11'
implementation group: 'net.sf.ehcache', name: 'ehcache', version: '2.10.6'
implementation 'commons-io:commons-io:2.11.0'
implementation group: 'com.google.firebase', name: 'firebase-admin', version: '8.1.0'
implementation group: 'com.google.auth', name: 'google-auth-library-credentials', version: '1.5.3'
implementation group: 'com.google.auth', name: 'google-auth-library-oauth2-http', version: '1.5.3'
implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation group: 'com.github.downgoon', name: 'MarvinPlugins', version: '1.5.5'
implementation group: 'com.github.downgoon', name: 'MarvinFramework', version: '1.5.5'
implementation group: 'org.imgscalr', name: 'imgscalr-lib', version: '4.2'
implementation 'mysql:mysql-connector-java'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
implementation group: 'org.json', name: 'json', version: '20210307'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.2'
runtime 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtime 'io.jsonwebtoken:jjwt-jackson:0.11.2'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
// developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
// asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
}