-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
168 lines (136 loc) · 4.06 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
buildscript {
ext.reactiveStreamsVersion = "1.0.4"
ext.rxjavaVersion = "3.1.6"
ext.rxjava3DocVersion = "3.x"
ext.jmhLibVersion = "1.21"
ext.licenseVersion = "0.16.1"
ext.jmhGradleVersion = "0.5.3"
ext.junitVersion = "4.12"
ext.jacocoVersion = "0.8.7"
ext.pmdVersion = "6.34.0"
ext.bndVersion = "6.4.0"
ext.mavenPublishPluginVersion = "0.19.0"
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:$licenseVersion"
classpath "me.champeau.gradle:jmh-gradle-plugin:$jmhGradleVersion"
classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:$bndVersion"
classpath "com.vanniktech:gradle-maven-publish-plugin:$mavenPublishPluginVersion"
}
}
apply plugin: 'java-library'
apply plugin: 'eclipse'
apply plugin: "me.champeau.gradle.jmh"
apply plugin: 'pmd'
apply plugin: 'jacoco'
apply plugin: "com.github.hierynomus.license"
sourceCompatibility = JavaVersion.VERSION_1_9
targetCompatibility = JavaVersion.VERSION_1_9
group = "com.github.akarnokd"
ext.githubProjectName = 'rxjava3-jdk9-interop'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
if (!hasProperty('mainClass')) {
ext.mainClass = ''
}
repositories {
mavenCentral()
}
dependencies {
implementation "io.reactivex.rxjava3:rxjava:${rxjavaVersion}"
testImplementation group: 'junit', name: 'junit', version: junitVersion
}
apply plugin: 'biz.aQute.bnd.builder'
jar {
bnd ('Bundle-Name': 'rxjava3-jdk9-interop',
'Bundle-Vendor': 'akarnokd',
'Bundle-Description': 'RxJava 3.x extra sources, operators and components and ports of many 1.x companion libraries.',
'Import-Package': '!org.junit,!junit.framework,!org.mockito.*,*',
'Bundle-DocURL': 'https://github.com/akarnokd/RxJavaJdk9Interop',
'Eclipse-ExtensibleAPI': 'true',
"Export-Package": "hu.akarnokd.rxjava3.jdk9interop.*",
'Automatic-Module-Name': 'com.github.akarnokd.rxjava3jdk9interop'
)
}
apply plugin: "com.vanniktech.maven.publish"
jmh {
jmhVersion = jmhLibVersion
humanOutputFile = null
if (project.hasProperty('jmh')) {
include = ".*" + project.jmh + ".*"
} else {
include = ".*"
}
}
plugins.withType(EclipsePlugin) {
project.eclipse.classpath.plusConfigurations += [ configurations.jmh ]
}
javadoc {
failOnError = false
exclude "**/internal/**"
exclude "**/test/**"
exclude "**/perf/**"
exclude "**/jmh/**"
options.links(
"https://docs.oracle.com/javase/9/docs/api/",
"http://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/",
"http://reactivex.io/RxJava/$rxjava3DocVersion/javadoc/"
)
}
test {
maxHeapSize = "2g"
testLogging {
events "started", "failed" // "skipped", "passed"
// showStandardStreams = true
}
}
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 = pmdVersion
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