forked from JakduK/jakduk-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (34 loc) · 891 Bytes
/
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.4.RELEASE")
}
}
allprojects {
group = 'com.jakduk'
version = '0.7.1-SNAPSHOT'
}
subprojects {
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
sourceCompatibility = 1.8
targetCompatibility = 1.8
// test task 에서 spring.profiles.active 를 위한 설정.
test {
systemProperties = System.properties as Map<String, ?>
}
repositories {
jcenter()
// 프로젝트에 import한 jar 보관 폴더.
flatDir {
dirs getRootDir().path + '/custom-lib'
}
}
dependencies {
testCompile('org.springframework.boot:spring-boot-starter-test')
compileOnly 'org.projectlombok:lombok'
}
}