-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (31 loc) · 990 Bytes
/
build.gradle
File metadata and controls
41 lines (31 loc) · 990 Bytes
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
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC3")
}
}
group 'org.myspringboot'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
sourceCompatibility = 1.7
startScripts {
mainClassName = 'org.myspringboot.Application'
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.1.6.BUILD-SNAPSHOT")
compile("org.springframework.boot:spring-boot-starter-actuator:1.1.6.BUILD-SNAPSHOT")
compile("org.springframework:spring-jdbc:4.0.0.RELEASE")
compile("javax.inject:javax.inject:1")
compile("org.mybatis:mybatis:3.2.4")
compile("org.mybatis:mybatis-spring:1.2.2")
testCompile group: 'junit', name: 'junit', version: '4.11'
}