-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
57 lines (46 loc) · 1.18 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
plugins {
id 'com.github.hierynomus.license' version '0.13.1'
id 'maven-publish'
// id 'net.nemerosa.versioning' version '2.4.0'
id 'com.jfrog.bintray' version '1.8.4'
id 'com.github.ben-manes.versions' version '0.13.0'
}
apply plugin: 'java'
apply from: 'gradle/publishing.gradle'
wrapper {
gradleVersion = '6.4'
}
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
license {
header = rootProject.file('config/HEADER')
strictCheck = true
ignoreFailures = true
mapping {
java = 'SLASHSTAR_STYLE'
groovy = 'SLASHSTAR_STYLE'
fxml = 'XML_STYLE'
}
ext.year = '2019'
ext.author = 'Michael Hoffer <[email protected]>'
exclude '**/*.svg'
}
test {
//we want display the following test events
testLogging {
// events "PASSED", "STARTED", "FAILED", "SKIPPED"
showStandardStreams = true
}
}