-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
76 lines (58 loc) · 2.56 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
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath "io.spring.gradle:dependency-management-plugin:1.0.4.RELEASE"
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'com.dh'
version = '0.0.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
//Spring Boot Overriding
ext['hibernate.version'] = '5.2.11.Final'
dependencies {
// runtime('com.h2database:h2')
// Spring boot Project Basic Dependencies
compileOnly('org.projectlombok:lombok')
compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
// Spring boot Handelbars Dependencies
compile 'pl.allegro.tech.boot:handlebars-spring-boot-starter:0.2.15'
compile 'com.github.jknack:handlebars-helpers:4.0.7',
'com.github.jknack:handlebars-jackson2:4.0.7',
'com.github.jknack:handlebars-humanize:4.0.7',
'com.github.jknack:handlebars-markdown:4.0.7'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
compile 'org.springframework.boot:spring-boot-starter-data-rest'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-json', version: '2.1.3.RELEASE'
compile 'org.mariadb.jdbc:mariadb-java-client'
compile 'org.springframework.boot:spring-boot-devtools'
compile('org.springframework.boot:spring-boot-starter-security')
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.6'
compile group: 'org.apache.commons', name: 'commons-text', version: '1.6'
// 썸네일
compile group: 'net.coobird', name: 'thumbnailator', version: '0.4.8'
// 파일 업로드
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.4'
// using the annotation processor
compile "org.springframework.boot:spring-boot-configuration-processor"
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'net.sf.json-lib', name: 'json-lib', version: '2.4', classifier:'jdk15'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-hibernate5
compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-hibernate5', version: '2.9.9'
}