-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
68 lines (51 loc) · 1.99 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
buildscript {
ext {
springBootVersion = '1.5.2.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile ('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
compile('org.springframework.boot:spring-boot-starter-undertow') {
exclude group: 'io.undertow', module: 'undertow-websockets-jsr'
}
compile('org.mortbay.jetty.alpn:alpn-boot:8.1.11.v20170118')
compile("org.springframework.boot:spring-boot-devtools")
compile("org.springframework.boot:spring-boot-actuator")
compile('org.hibernate:hibernate-java8:5.0.12.Final')
compile('com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.0.pr2')
compile('org.modelmapper:modelmapper:0.7.8')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.springframework.boot:spring-boot-starter-data-redis')
compile('org.springframework.boot:spring-boot-starter-security')
compileOnly('org.projectlombok:lombok')
runtime('com.h2database:h2')
compile('com.github.kstyrc:embedded-redis:0.6')
compile('org.springframework.boot:spring-boot-starter-mail')
compile('org.springframework.boot:spring-boot-starter-freemarker')
compile('org.webjars.bower:angular:1.6.4')
compile('org.webjars.bower:angular-route:1.6.4')
compile('org.webjars.bower:angular-sanitize:1.6.4')
compile('org.webjars.bower:angular-cookies:1.6.4')
compile('org.webjars.bower:angular-bootstrap:2.5.0')
compile('org.webjars.bower:angular-summernote:0.8.1')
compile('org.webjars.bower:angular-utf8-base64:0.0.5')
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('org.springframework.security:spring-security-test:4.2.2.RELEASE')
}