forked from ifnul/ums-edbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·78 lines (64 loc) · 1.74 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
76
77
78
project.ext.domainName='university'
println System.getProperty("java.home")
allprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
compileJava {
options.encoding = "UTF-8"
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web:1.2.4.RELEASE'
compile 'commons-beanutils:commons-beanutils:1.9.2'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.springframework.security:spring-security-core:4.0.1.RELEASE'
compile 'org.springframework.security:spring-security-config:4.0.1.RELEASE'
compile 'org.springframework.security:spring-security-web:4.0.1.RELEASE'
compile('org.springframework.boot:spring-boot-starter-data-jpa:1.2.5.RELEASE')
compile 'com.h2database:h2:1.3.156'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-all:1.10.19'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
//Declaring dependencies between submodules
project(':ums-edbo-rest-api') {
dependencies {
compile project(':ums-edbo-service')
}
}
project(':ums-edbo-service') {
dependencies {
compile project(':ums-edbo-guides')
compile project(':ums-edbo-person')
}
}
project(':ums-edbo-common') {
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web:1.2.4.RELEASE'
}
}
project(':ums-edbo-guides') {
dependencies {
compile project(':ums-edbo-common')
compile 'org.springframework:spring-context:4.1.6.RELEASE'
}
}
project(':ums-edbo-person') {
dependencies {
compile project(':ums-edbo-common')
compile 'org.springframework:spring-context:4.1.6.RELEASE'
}
}