-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
53 lines (41 loc) · 1.7 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 'org.springframework.boot' version '2.1.4.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
ext['hibernate.version'] = '5.2.11.Final'
group = 'com.angelhack.angelcell'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.session:spring-session-core'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compile 'org.springframework.boot:spring-boot-devtools'
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'ch.qos.logback:logback-core:1.1.2'
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.7.0'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.7.0'
runtime 'org.postgresql:postgresql'
// handelbars
compile group: 'com.github.jknack', name: 'handlebars-jackson2', version: '2.3.1'
compile 'pl.allegro.tech.boot:handlebars-spring-boot-starter:0.3.0'
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.jsoup:jsoup:1.10.3'
}