-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (32 loc) · 1.13 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
group 'com.codehelper'
version '1.0-SNAPSHOT'
apply plugin: 'java'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE")
}
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
}
dependencies {
// tag::jetty[]
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.4.2.RELEASE'
// compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.40'
compile group: 'com.alibaba', name: 'druid', version: '1.0.27'
compile group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: '1.1.1'
compile group: 'org.mybatis', name: 'mybatis', version: '3.4.1'
runtime files('libs/ojdbc14.jar')
// tag::actuator[]
// end::actuator[]
testCompile("junit:junit")
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '1.4.2.RELEASE'
}