forked from JetBrains/intellij-deps-asm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
427 lines (395 loc) · 16.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. Neither the name of the copyright holders nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
buildscript {
repositories { mavenCentral() }
dependencies { classpath 'org.netbeans.tools:sigtest-maven-plugin:1.1' }
}
plugins { id 'biz.aQute.bnd.builder' version '4.1.0' apply false }
plugins { id 'com.github.sherter.google-java-format' version '0.8' apply false }
plugins { id 'me.champeau.gradle.jmh' version '0.4.8' apply false }
plugins { id 'org.sonarqube' version '2.6.2' apply false }
plugins { id "org.jetbrains.qodana" version "0.1.13" }
description = 'ASM, a very small and fast Java bytecode manipulation framework'
subprojects {
repositories { mavenCentral() }
apply plugin: 'java'
apply plugin: 'jacoco'
def snapshotSuffix = rootProject.hasProperty('release') ? '' : '-SNAPSHOT'
group = 'org.ow2.asm'
version = '7.1' + snapshotSuffix
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
test { useJUnitPlatform() }
ext.provides = [] // The provided java packages, e.g. ['org.objectweb.asm']
ext.requires = [] // The required Gradle projects, e.g. [':asm-test']
ext.depends = [] // The external dependencies, e.g. ['junit:junit:4.12']
// Some external dependencies (such as Jacoco) depend transitively on ASM, and
// without this rule Gradle can mix ASM jars of different versions (e.g.
// asm-6.0.jar with the asm-tree.jar built locally).
configurations.all { resolutionStrategy { preferProjectModules() } }
}
// -----------------------------------------------------------------------------
// Project descriptions
// -----------------------------------------------------------------------------
project(':asm') {
description = parent.description
provides = ['org.objectweb.asm', 'org.objectweb.asm.signature']
}
project(':asm-analysis') {
description = "Static code analysis API of ${parent.description}"
provides = ['org.objectweb.asm.tree.analysis']
requires = [':asm-tree']
}
project(':asm-commons') {
description = "Usefull class adapters based on ${parent.description}"
provides = ['org.objectweb.asm.commons']
requires = [':asm', ':asm-tree', ':asm-analysis']
dependencies { testCompile project(':asm-util') }
}
project(':asm-test') {
description = "Utilities for testing ${parent.description}"
provides = ['org.objectweb.asm.test']
depends = ['org.junit.jupiter:junit-jupiter-api:5.3.2',
'org.junit.jupiter:junit-jupiter-params:5.3.2']
}
project(':asm-tree') {
description = "Tree API of ${parent.description}"
provides = ['org.objectweb.asm.tree']
requires = [':asm']
}
project(':asm-util') {
description = "Utilities for ${parent.description}"
provides = ['org.objectweb.asm.util']
requires = [':asm', ':asm-tree', ':asm-analysis']
dependencies { testCompile 'org.codehaus.janino:janino:3.0.11' }
}
// Use "gradle benchmarks:jmh [-PjmhInclude='<regex>']" to run the benchmarks.
project(':benchmarks') {
description = "Benchmarks for ${rootProject.description}"
apply plugin: 'me.champeau.gradle.jmh'
dependencies {
compile files('libs/csg-bytecode-1.0.0.jar', 'libs/jclasslib.jar')
jmh project(':asm'), project(':asm-tree')
}
depends = [
'kawa:kawa:1.7',
'net.sf.jiapi:jiapi-reflect:0.5.2',
'net.sourceforge.serp:serp:1.15.1',
'org.apache.bcel:bcel:6.0',
'org.aspectj:aspectjweaver:1.8.10',
'org.cojen:cojen:2.2.5',
'org.javassist:javassist:3.21.0-GA',
'org.mozilla:rhino:1.7.7.1'
]
['4.0', '5.0.1', '6.0', '6.1.1', '6.2.1', '7.0'].each { version ->
configurations.create("asm${version}")
dependencies.add("asm${version}", "org.ow2.asm:asm:${version}@jar")
dependencies.add("asm${version}", "org.ow2.asm:asm-tree:${version}@jar")
task "asm${version}"(type: Copy) {
from configurations."asm${version}".collect { zipTree(it) }
into "${buildDir}/asm${version}"
}
classes.dependsOn "asm${version}"
}
configurations.create('input-classes-java8')
dependencies.add('input-classes-java8', 'io.vavr:vavr:0.10.0@jar')
task copyInputClasses(type: Copy) {
from configurations.'input-classes-java8'.collect { zipTree(it) }
into "${buildDir}/input-classes-java8"
}
classes.dependsOn copyInputClasses
jmh {
jvmArgsAppend = "-Duser.dir=${rootDir}"
resultFormat = 'CSV'
profilers = ['org.objectweb.asm.benchmarks.MemoryProfiler']
if (rootProject.hasProperty('jmhInclude')) {
include = [jmhInclude]
}
}
}
project(':tools') {
description = "Tools used to build ${parent.description}"
}
project(':tools:bnd-module-plugin') {
description = "bnd plugin to build moduleinfo with ${rootProject.description}"
// TODO: this compiles asm twice (here and in :asm), find a way to avoid this.
sourceSets.main.java.srcDirs += project(':asm').sourceSets.main.java.srcDirs
depends = ['biz.aQute.bnd:biz.aQute.bnd:4.0.0']
}
project(':tools:retrofitter') {
description = "JDK 1.5 class retrofitter based on ${rootProject.description}"
// TODO: this compiles asm thrice (here, above and in :asm).
sourceSets.main.java.srcDirs += project(':asm').sourceSets.main.java.srcDirs
}
// -----------------------------------------------------------------------------
// Project tasks creation and configuration
// -----------------------------------------------------------------------------
// All projects are checked with googleJavaFormat, Checkstyle and PMD,
// and tested with :asm-test and JUnit.
subprojects {
apply plugin: 'com.github.sherter.google-java-format'
googleJavaFormat.exclude 'src/resources/java/**/*'
// Check the coding style with Checkstyle. Fail in case of error or warning.
apply plugin: 'checkstyle'
checkstyle.toolVersion = '8.17'
checkstyle.configFile = file("${rootDir}/tools/checkstyle.xml")
checkstyle.maxErrors = 0
checkstyle.maxWarnings = 0
// Check the code with PMD. TODO remove toolVersion when default version uses
// ASM7 (default 6.8.0 uses ASM7_EXPERIMENTAL -> does not work with HEAD).
apply plugin: 'pmd'
pmd.toolVersion = '6.3.0'
pmd.ruleSets = []
pmd.ruleSetFiles = files("${rootDir}/tools/pmd.xml")
pmd.consoleOutput = true
java.util.logging.Logger.getLogger('net.sourceforge.pmd.PMD').setFilter({
log -> !log.message.contains('This analysis could be faster')
})
dependencies {
requires.each { projectName -> compile project(projectName) }
depends.each { artifactName -> compile artifactName }
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2',
'org.junit.jupiter:junit-jupiter-params:5.3.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.2'
testCompile project(':asm-test')
}
}
// Configures the projects with a non-empty 'provides' property. These are the
// ones which are published in Maven. They must be checked for code coverage and
// backward compatibility, retrofited to Java 1.5, packaged with biz.aQute.bnd
// and uploaded to Maven with a POM, sources and Javadoc.
configure(subprojects.findAll { it.provides }) {
// Code coverage configuration.
jacoco.toolVersion = '0.8.3'
jacocoTestReport {
classDirectories.setFrom(sourceSets.main.output.classesDirs)
}
jacocoTestCoverageVerification {
classDirectories.setFrom(sourceSets.main.output.classesDirs)
violationRules.rule { limit { minimum = 0.95; counter = 'INSTRUCTION' } }
}
check.dependsOn jacocoTestCoverageVerification
// Retrofit the code to Java 1.5, in-place, in compileJava.doLast.
if (name != 'asm-test') {
compileJava.dependsOn ':tools:retrofitter:classes'
compileJava.doLast {
def path = project(':tools:retrofitter').sourceSets.main.runtimeClasspath
def loader = new URLClassLoader(path.collect {f -> f.toURL()} as URL[])
def retrofitter =
loader.loadClass('org.objectweb.asm.tools.Retrofitter').newInstance()
retrofitter.retrofit sourceSets.main.output.classesDirs.singleFile
}
}
// Create one backward compatibility checking task for each 'sigtest-*' file
// in test/resources, and make the 'check' task depend on all these tasks.
if (file('src/test/resources/').exists()) {
file('src/test/resources/').eachFileMatch(~/sigtest-.*/) { f ->
task "${f.name}"(dependsOn: 'classes') {
inputs.files(f, sourceSets.main.java)
outputs.file("${buildDir}/${f.name}")
doLast {
def sigtest = new com.sun.tdk.signaturetest.SignatureTest()
def args = ['-ApiVersion', version, '-Backward', '-Static',
'-Mode', 'bin', '-FileName', f, '-Classpath',
project(':tools').file('jdk8-api.jar').path + File.pathSeparator +
sourceSets.main.output.classesDirs.asPath, '-Package'] + provides
outputs.getFiles()[0].withPrintWriter { printWriter ->
sigtest.run(args as String[], printWriter, null)
}
if (!sigtest.isPassed()) throw new GradleException()
}
}
check.dependsOn f.name
}
// Define a task to create a sigtest file for the current version.
task "buildSigtest"(dependsOn: 'classes') {
inputs.files(sourceSets.main.java)
outputs.file("src/test/resources/sigtest-${version}.txt")
doLast {
def setup = new com.sun.tdk.signaturetest.Setup()
def args = ['-ApiVersion', version, '-FileName', outputs.getFiles()[0],
'-Classpath', project(':tools').file('jdk8-api.jar').path +
File.pathSeparator + sourceSets.main.output.classesDirs.asPath +
File.pathSeparator + sourceSets.main.compileClasspath.asPath,
'-Package'] + provides
setup.run(args as String[], new PrintWriter(System.err, true), null)
if (!setup.isPassed()) throw new GradleException()
}
}
}
// Apply the biz.aQute.bnd plugin to package the project as an OSGi bundle,
// with a custom plugin to generate and include a module-info class. Exclude
// the asm-test project (the DefaultPackage class prevents it from being a
// proper bundle).
if (name != 'asm-test') {
apply plugin: 'biz.aQute.bnd.builder'
jar.dependsOn ':tools:bnd-module-plugin:jar'
jar.manifest.attributes(
'-classpath': sourceSets.main.output.classesDirs.asPath,
'-plugin': 'org.objectweb.asm.tools.ModuleInfoBndPlugin;',
'-pluginpath':
project(':tools:bnd-module-plugin').jar.outputs.files.singleFile,
'-removeheaders': 'Bnd-LastModified,Build-By,Created-By,Include-Resource,\
Require-Capability,Tool',
'Bundle-DocURL': 'http://asm.ow2.org',
'Bundle-RequiredExecutionEnvironment': 'J2SE-1.5',
'Bundle-SymbolicName': provides[0],
'Export-Package': provides.collect{"${it};version=${version}"}.join(','),
'Implementation-Title': project.description,
'Implementation-Version': "${version}",
'Module-Requires':
requires
.collect{"${project(it).provides[0]};transitive=true"}
.join(',')
)
}
// Apply the SonarQube plugin to monitor the code quality of the project.
// Use with 'gradlew sonarqube -Dsonar.host.url=https://sonarqube.ow2.org'.
apply plugin: 'org.sonarqube'
sonarqube {
properties { property 'sonar.projectKey', "ASM:${project.name}" }
}
// Add a task to generate a private javadoc and add it as a dependency of the
// 'check' task.
task privateJavadoc(type: Javadoc) {
source = sourceSets.main.allJava
classpath = configurations.compile
destinationDir = file("${javadoc.destinationDir}-private")
options.memberLevel = JavadocMemberLevel.PRIVATE
}
check.dependsOn privateJavadoc
// Add tasks to generate the Javadoc and a source jar, to be uploaded to Maven
// together with the main jar (containing the compiled code).
task javadocJar(type: Jar, dependsOn: 'javadoc') {
from javadoc.destinationDir
classifier 'javadoc'
}
task sourcesJar(type: Jar, dependsOn: 'classes') {
from sourceSets.main.allSource
classifier 'sources'
}
artifacts {
archives javadocJar
archives sourcesJar
}
// Add an uploadArchives task, provided by the maven plugin, to generate the
// project POM and to upload it, with the classes, sources and Javadoc jars.
apply plugin: 'maven'
uploadArchives.repositories.mavenDeployer {
def nexusUserName = System.env.NEXUS_USER_NAME
def nexusPassword = System.env.NEXUS_PASSWORD
if (nexusUserName != null) {
def baseUrl = 'http://repository.ow2.org/nexus/'
repository(url: baseUrl + 'service/local/staging/deploy/maven2') {
authentication(userName: nexusUserName, password: nexusPassword)
}
snapshotRepository(url: baseUrl + 'content/repositories/snapshots') {
authentication(userName: nexusUserName, password: nexusPassword)
}
} else {
repository url: 'file://localhost/tmp/myRepo/'
}
pom.project {
parent {
artifactId 'ow2'
groupId 'org.ow2'
version '1.5'
}
name jar.baseName
description project.description
packaging 'jar'
inceptionYear '2000'
licenses {
license {
name 'BSD'
url 'http://asm.ow2.org/license.html'
}
}
url 'http://asm.ow2.org/'
mailingLists {
mailingList {
name 'ASM Users List'
subscribe 'https://mail.ow2.org/wws/subscribe/asm'
post 'asm@objectweb.org'
archive 'https://mail.ow2.org/wws/arc/asm/'
}
mailingList {
name 'ASM Team List'
subscribe 'https://mail.ow2.org/wws/subscribe/asm-team'
post 'asm-team@objectweb.org'
archive 'https://mail.ow2.org/wws/arc/asm-team/'
}
}
issueManagement {
url 'https://gitlab.ow2.org/asm/asm/issues'
}
scm {
connection 'scm:git:https://gitlab.ow2.org/asm/asm/'
developerConnection 'scm:git:https://gitlab.ow2.org/asm/asm/'
url 'https://gitlab.ow2.org/asm/asm/'
}
developers {
developer {
name 'Eric Bruneton'
id 'ebruneton'
email 'ebruneton@free.fr'
roles {
role 'Creator'
role 'Java Developer'
}
}
developer {
name 'Eugene Kuleshov'
id 'eu'
email 'eu@javatx.org'
roles {
role 'Java Developer'
}
}
developer {
name 'Remi Forax'
id 'forax'
email 'forax@univ-mlv.fr'
roles {
role 'Java Developer'
}
}
}
organization {
name 'OW2'
url 'http://www.ow2.org/'
}
}
}
}
qodana {
dockerImageName = System.getenv("QODANA_IMAGE") ?: "jetbrains/qodana:latest"
resultsPath = System.getenv("QODANA_RESULTS") ?: resultsPath
saveReport = true
reportPath = "$resultsPath/report"
}