-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
147 lines (118 loc) · 3.51 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
buildscript {
ext.rxjavaVersion = "3.1.6"
ext.rxjavaDocVersion = "3.x"
ext.licenseVersion = "0.16.1"
ext.animalSnifferVersion = "1.6.0"
ext.bndVersion = "6.4.0"
ext.mavenPublishPluginVersion = "0.18.0"
ext.jacocoVersion = "0.8.5"
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:$bndVersion"
classpath "com.vanniktech:gradle-maven-publish-plugin:$mavenPublishPluginVersion"
classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:$licenseVersion"
classpath "ru.vyarus:gradle-animalsniffer-plugin:$animalSnifferVersion"
}
}
apply plugin: 'java-library'
apply plugin: 'eclipse'
apply plugin: 'pmd'
apply plugin: 'jacoco'
apply plugin: 'ru.vyarus.animalsniffer'
apply plugin: "com.github.hierynomus.license"
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
group = "com.github.akarnokd"
ext.githubProjectName = 'rxjava3-swing'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
if (!hasProperty('mainClass')) {
ext.mainClass = ''
}
repositories {
mavenCentral()
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
signature 'org.codehaus.mojo.signature:java18:1.0@signature'
api "io.reactivex.rxjava3:rxjava:$rxjavaVersion"
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}
apply plugin: 'biz.aQute.bnd.builder'
jar {
bnd ('Bundle-Name': 'rxjava3-bridge',
'Bundle-Vendor': 'akarnokd',
'Bundle-Description': 'Bridge between Java 6 Swing (GUI) events and RxJava 3 + a scheduler for the swing event dispatch thread.',
'Import-Package': '!org.junit,!junit.framework,!org.mockito.*,*',
'Bundle-DocURL': 'https://github.com/akarnokd/RxJavaSwing')
}
apply plugin: "com.vanniktech.maven.publish"
javadoc {
failOnError = false
options.links(
"http://docs.oracle.com/javase/7/docs/api/",
"http://reactivex.io/RxJava/$rxjavaDocVersion/javadoc"
)
}
test {
// systemProperty "java.awt.headless", "true"
maxHeapSize = "2g"
testLogging {
events "started", "failed" // "skipped", "passed"
// showStandardStreams = true
exceptionFormat="full"
}
}
license {
header rootProject.file('HEADER')
ext.year = Calendar.getInstance().get(Calendar.YEAR)
skipExistingHeaders true
ignoreFailures true
excludes(["**/*.md", "**/*.txt"])
}
jacoco {
toolVersion = "$jacocoVersion" // See http://www.eclemma.org/jacoco/.
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
build.dependsOn jacocoTestReport
check.dependsOn jacocoTestReport
pmd {
toolVersion = '6.21.0'
ignoreFailures = true
sourceSets = [sourceSets.main]
ruleSets = []
ruleSetFiles = files('pmd.xml')
}
pmdMain {
reports {
html.enabled = true
xml.enabled = true
}
}
task pmdPrint(dependsOn: 'pmdMain') doLast {
File file = rootProject.file('build/reports/pmd/main.xml')
if (file.exists()) {
println("Listing first 100 PMD violations")
file.eachLine { line, count ->
if (count <= 100) {
println(line)
}
}
} else {
println("PMD file not found.")
}
}
build.dependsOn pmdPrint
check.dependsOn pmdPrint
animalsniffer {
annotation = 'io.reactivex.rxjava3.internal.util.SuppressAnimalSniffer'
}