-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
299 lines (270 loc) · 8.1 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
plugins {
// osgi
id "org.jruyi.osgibnd" version "0.4.0"
// code formatting
id "com.diffplug.gradle.spotless" version "1.3.1"
// bintray uploading
id "com.jfrog.bintray" version "1.3.1"
// for downloading JRE6
id "de.undercouch.download" version "2.0.0"
}
repositories {
mavenCentral()
}
//////////
// JAVA //
//////////
apply plugin: 'java'
sourceCompatibility = VER_JAVA
targetCompatibility = VER_JAVA
dependencies {
testCompile "junit:junit:${VER_JUNIT}"
}
//////////
// OSGI //
//////////
// delete the old manifest to ensure there's no caching or merging going on
jar.doFirst {
project.file('META-INF/MANIFEST.MF').delete()
}
jar.manifest {
attributes (
'Export-Package': 'com.jmatio.*',
'Bundle-SymbolicName': "${project.group}.${project.name}",
'Bundle-Vendor': 'DiffPlug',
'Bundle-DocURL': "https://github.com/${project.org}/${project.name}",
'Bundle-License': "https://github.com/${project.org}/${project.name}/blob/v${project.version}/LICENSE",
'-removeheaders': 'Bnd-LastModified,Bundle-Name,Created-By,Tool',
'-savemanifest': project.file('META-INF/MANIFEST.MF'),
)
}
// manifests are only generated when the java files change - not if manifest properties change
// this task forces the manifests to regenerate
task refreshManifest(dependsOn: jar)
gradle.taskGraph.whenReady { taskGraph ->
if (taskGraph.hasTask(refreshManifest)) {
jar.outputs.upToDateWhen { false }
}
}
////////////
// JAVA 6 //
////////////
// matlabcontrol requires at least Java 1.6,
// but older MATLABs run on even older versions
// URL for downloading the JRE6
// others available here, OS doesn't matter: https://github.com/alexkasko/openjdk-unofficial-builds#openjdk-6-build-30
def JDK6_URL = 'https://bitbucket.org/alexkasko/openjdk-unofficial-builds/downloads/openjdk-1.6.0-unofficial-b30-windows-i586-image.zip'
def JDK6_SHA_256 = '8a119a8c9b2ecc48e8457738f57b251e6265b2c0fb232de0ff6fddce0f127045'
// place where the JRE6 will end up
def JDK6_DIR = "${buildDir}/jdk"
def JDK6_DST = "${JDK6_DIR}/jdk.zip"
def JRE6_HOME = "${buildDir}/jdk/openjdk-1.6.0-unofficial-b30-windows-i586-image/jre"
import de.undercouch.gradle.tasks.download.Download;
import de.undercouch.gradle.tasks.download.Verify;
task downloadJRE6(type: Download) {
src JDK6_URL
dest JDK6_DST
overwrite false
}
task verifyJRE6(dependsOn: downloadJRE6, type: Verify) {
src downloadJRE6.dest
algorithm 'SHA-256'
checksum JDK6_SHA_256
}
task unzipJRE6(dependsOn: verifyJRE6, type: Copy) {
from zipTree(downloadJRE6.dest)
into JDK6_DIR
}
// Best bet is to stay at 1.6
sourceCompatibility = 1.6
targetCompatibility = 1.6
def sep = System.getProperty('path.separator')
def bootClasspathStr = "${JRE6_HOME}/lib/rt.jar${sep}${JRE6_HOME}/lib/jsse.jar"
project.tasks.withType(AbstractCompile, { AbstractCompile ac ->
ac.options.bootClasspath = bootClasspathStr // options is always there but not defined on AbstractCompile so going to hit it anyway
ac.dependsOn(unzipJRE6)
})
/////////////
// ECLIPSE //
/////////////
apply plugin: 'eclipse'
eclipse {
project {
natures 'org.eclipse.pde.PluginNature'
natures 'org.eclipse.jdt.core.javanature'
buildCommand 'org.eclipse.jdt.core.javabuilder'
buildCommand 'org.eclipse.pde.ManifestBuilder'
buildCommand 'org.eclipse.pde.SchemaBuilder'
}
classpath {
downloadSources true
downloadJavadoc true
}
jdt {
sourceCompatibility VER_JAVA
targetCompatibility VER_JAVA
}
}
// always create fresh projects
tasks.eclipse.dependsOn(cleanEclipse)
////////////
// FORMAT //
////////////
spotless {
java {
licenseHeaderFile 'spotless.license.java' // License header file
importOrderFile 'spotless.importorder' // An import ordering file, exported from Eclipse
eclipseFormatFile 'spotless.eclipseformat.xml' // XML file dumped out by the Eclipse formatter
// Eclipse formatter puts excess whitespace after lambda blocks
// funcThatTakesLambdas(x -> {} , y -> {} ) // what Eclipse does
// funcThatTakesLambdas(x -> {}, y -> {}) // what I wish Eclipse did
custom 'Lambda fix', { it.replace('} )', '})').replace('} ,', '},') }
}
format 'misc', {
target '**/.gitignore', '**/*.gradle', '**/*.md', '**/*.sh'
indentWithTabs()
trimTrailingWhitespace()
endWithNewline()
}
freshmark {}
}
//////////////
// FINDBUGS //
//////////////
apply plugin: 'findbugs'
findbugs {
toolVersion = VER_FINDBUGS
sourceSets = [sourceSets.main] // don't check the test code
ignoreFailures = false // bug free or it doesn't ship!
reportsDir = file('build/findbugs')
effort = 'max' // min|default|max
reportLevel = 'medium' // low|medium|high (low = sensitive to even minor mistakes)
omitVisitors = [] // bugs that we want to ignore
}
// HTML instead of XML
tasks.withType(FindBugs) {
reports {
xml.enabled = false
html.enabled = true
}
}
// we'll want the findbugs annotations (they don't have a 3.0.1 version)
dependencies {
compile 'com.google.code.findbugs:annotations:3.0.0'
compile 'com.google.code.findbugs:jsr305:3.0.0'
}
///////////
// MAVEN //
///////////
apply plugin: 'maven-publish'
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allJava
}
// Where it's possible to name parameters and methods clearly enough
// that javadoc is not necessary, why make the code bigger?
//
// Thus, no javadoc warnings.
def makeLink = { url, text -> "<a href=\"${url}\" style=\"text-transform: none;\">${text}</a>" }
def javadocInfo = '<h2>' + makeLink("https://github.com/${org}/${name}", "${group}:${name}:${version}") +
' by ' + makeLink('http://www.diffplug.com', 'DiffPlug') + '</h2>'
javadoc {
options.addStringOption('Xdoclint:none', '-quiet')
options.header javadocInfo
options.footer javadocInfo
options.links('https://docs.oracle.com/javase/6/docs/api/')
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
////////////////
// PUBLISHING //
////////////////
def isSnapshot = project.version.endsWith('-SNAPSHOT')
// pulls the credentials from either the environment variable or gradle.properties
def cred = {
if (System.env[it] != null) {
return System.env[it]
} else if (project.hasProperty(it)) {
return project[it]
} else {
return 'unknown_' + it
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
pom.withXml {
// findbugs annotations should have scope "provided"
asNode().dependencies.'*'.findAll() { it.groupId.text() == 'com.google.code.findbugs' }.each() { it.scope*.value = 'provided' }
// add MavenCentral requirements to the POM
asNode().children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST
name project.name
description project.description
url "https://github.com/${project.org}/${project.name}"
scm {
url "https://github.com/${project.org}/${project.name}"
connection "scm:git:git://github.com/${project.org}/${project.name}"
developerConnection "scm:git:ssh:git@github.com/${project.org}/${project.name}"
}
licenses {
license {
name 'New BSD License'
url 'https://github.com/diffplug/matfilerw/blob/v1.3.0/LICENSE'
distribution 'repo'
}
}
developers {
developer {
id 'nedtwigg'
name 'Ned Twigg'
email 'ned.twigg@diffplug.com'
}
}
}
}
}
}
if (isSnapshot) {
// upload snapshots to oss.sonatype.org
repositories { maven {
url = 'https://oss.sonatype.org/content/repositories/snapshots'
credentials {
username = cred('nexus_user')
password = cred('nexus_pass')
}
} }
}
}
if (!isSnapshot) {
// upload releases to bintray and then mavenCentral
bintray {
user = cred('bintray_user')
key = cred('bintray_pass')
publications = ['mavenJava']
publish = true
pkg {
repo = 'opensource'
name = project.name
userOrg = project.org
version {
name = project.version
mavenCentralSync {
user = cred('nexus_user')
password = cred('nexus_pass')
}
}
}
}
publish.dependsOn(bintrayUpload)
bintrayUpload.dependsOn(['generatePomFileForMavenJavaPublication', jar, sourcesJar, javadocJar])
}
// helps external scripts detect version
task printVersion << {
println version
}