forked from fluxoid-org/JFormica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (44 loc) · 1.02 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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id "com.github.hierynomus.license" version "0.14.0"
}
subprojects { project ->
// only on direct descendents
if (project.projectDir.getAbsolutePath().startsWith(rootProject.projectDir.getAbsolutePath())) {
logger.info('applying license to ' + project.name)
apply plugin: 'license'
license {
header new File(rootProject.projectDir, "LICENSE")
ignoreFailures = true
}
}
apply plugin: 'findbugs'
findbugs {
// your findbugs configuration.
ignoreFailures = true
}
tasks.withType(FindBugs) {
reports {
xml.enabled = false
html.enabled = true
}
}
}
allprojects {
version = '0.0.5-SNAPSHOT'
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked"
}
apply plugin: 'idea'
apply plugin: 'maven'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.1'
}