-
Notifications
You must be signed in to change notification settings - Fork 55
/
build.gradle
76 lines (55 loc) · 2.28 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
apply plugin: 'idea'
apply plugin: 'java'
buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.3.RELEASE")
}
}
idea {
project {
jdkName = '1.8'
languageLevel = '1.8'
vcs = 'Git'
}
module {
// if you hate browsing Javadoc
downloadJavadoc = false
// and love reading sources :)
downloadSources = true
}
}
dependencies {
ext.springVersion = "4.3.8.RELEASE"
ext.springBootVersion = "1.5.3.RELEASE"
ext.slf4jVersion = "1.7.21"
compile "org.springframework:spring-beans:${springVersion}"
compile "org.springframework:spring-core:${springVersion}"
compile "org.springframework:spring-context:${springVersion}"
compile "org.springframework:spring-expression:${springVersion}"
compile "org.springframework:spring-web:${springVersion}"
compile "org.springframework:spring-webmvc:${springVersion}"
compile "org.springframework:spring-test:${springVersion}"
compile "org.springframework:spring-orm:${springVersion}"
compile "org.springframework.boot:spring-boot-autoconfigure:${springBootVersion}"
compile "org.springframework.boot:spring-boot:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter-data-jpa:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter-web:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter-aop:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter-tomcat:${springBootVersion}"
compile "org.springframework.statemachine:spring-statemachine-core:1.2.7.RELEASE"
compile "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final"
compile "org.hibernate:hibernate-java8:5.0.9.Final"
compile "mysql:mysql-connector-java:5.1.39"
compile "org.apache.commons:commons-lang3:3.4"
compile "commons-io:commons-io:2.5"
compile "commons-logging:commons-logging:1.2"
compile "commons-codec:commons-codec:1.10"
compile "javax.servlet:javax.servlet-api:3.1.0"
compile "org.slf4j:slf4j-api:${slf4jVersion}"
}