-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
48 lines (38 loc) · 1.06 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.6.RELEASE")
}
}
allprojects {
apply plugin: "java"
version = '1.0-SNAPSHOT'
group = "info.rnowak.springBootFun"
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-test:1.1.6.RELEASE"
compile "com.google.guava:guava:16.0.1"
compile "com.h2database:h2:1.3.175"
testCompile "junit:junit:4.11"
testCompile "org.mockito:mockito-all:1.9.5"
testCompile "org.assertj:assertj-core:1.5.0"
}
}
project(":persistence") {
dependencies {
compile "org.springframework.boot:spring-boot-starter-data-jpa:1.1.6.RELEASE"
testCompile project(":webapp")
}
}
project(":webapp") {
apply plugin: "spring-boot"
dependencies {
compile project(":persistence")
compile "org.springframework.boot:spring-boot-starter-web:1.1.6.RELEASE"
}
}