forked from awasum/default-setup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshared.gradle
58 lines (48 loc) · 1.24 KB
/
shared.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
group 'io.mifos.default-setup'
version '0.1.0-BUILD-SNAPSHOT'
ext.versions = [
accounting : '0.1.0-BUILD-SNAPSHOT',
validator : '5.3.0.Final'
]
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply plugin: 'io.spring.dependency-management'
tasks.withType(JavaCompile) {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
jcenter()
mavenLocal()
}
dependencyManagement {
imports {
mavenBom 'io.spring.platform:platform-bom:Athens-RELEASE'
}
}
// override certain dependency provided by Spring platform using newer releases
dependencies {
compile(
[group: 'com.google.code.findbugs', name: 'jsr305']
)
testCompile(
[group: 'org.springframework.boot', name: 'spring-boot-starter-test']
)
}
jar {
from sourceSets.main.allSource
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
license {
header rootProject.file('../HEADER')
strictCheck true
mapping {
java = 'SLASHSTAR_STYLE'
xml = 'XML_STYLE'
yml = 'SCRIPT_STYLE'
yaml = 'SCRIPT_STYLE'
}
ext.year = Calendar.getInstance().get(Calendar.YEAR)
ext.name = 'The Mifos Initiative'
}