2019-11-01 14:33:11 -04:00
|
|
|
import org.elasticsearch.gradle.info.BuildParams
|
|
|
|
|
2016-06-15 10:48:02 -04:00
|
|
|
/*
|
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
apply plugin: 'elasticsearch.build'
|
2018-07-31 17:31:13 -04:00
|
|
|
apply plugin: 'application'
|
2018-05-10 05:49:41 -04:00
|
|
|
mainClassName = 'org.openjdk.jmh.Main'
|
2016-06-15 10:48:02 -04:00
|
|
|
|
2018-09-04 00:32:14 -04:00
|
|
|
assemble.enabled = false
|
2016-06-15 10:48:02 -04:00
|
|
|
archivesBaseName = 'elasticsearch-benchmarks'
|
|
|
|
|
2019-04-09 14:52:50 -04:00
|
|
|
test.enabled = false
|
2016-06-15 10:48:02 -04:00
|
|
|
|
|
|
|
dependencies {
|
2019-11-14 06:01:23 -05:00
|
|
|
compile(project(":server")) {
|
|
|
|
// JMH ships with the conflicting version 4.6. This prevents us from using jopt-simple in benchmarks (which should be ok) but allows
|
|
|
|
// us to invoke the JMH uberjar as usual.
|
|
|
|
exclude group: 'net.sf.jopt-simple', module: 'jopt-simple'
|
|
|
|
}
|
|
|
|
compile "org.openjdk.jmh:jmh-core:$versions.jmh"
|
|
|
|
annotationProcessor "org.openjdk.jmh:jmh-generator-annprocess:$versions.jmh"
|
|
|
|
// Dependencies of JMH
|
|
|
|
runtime 'net.sf.jopt-simple:jopt-simple:4.6'
|
|
|
|
runtime 'org.apache.commons:commons-math3:3.2'
|
2016-06-15 10:48:02 -04:00
|
|
|
}
|
|
|
|
|
2016-08-23 09:15:22 -04:00
|
|
|
// enable the JMH's BenchmarkProcessor to generate the final benchmark classes
|
|
|
|
// needs to be added separately otherwise Gradle will quote it and javac will fail
|
|
|
|
compileJava.options.compilerArgs.addAll(["-processor", "org.openjdk.jmh.generators.BenchmarkProcessor"])
|
2016-06-15 10:48:02 -04:00
|
|
|
|
2019-11-01 14:33:11 -04:00
|
|
|
run.executable = "${BuildParams.runtimeJavaHome}/bin/java"
|
2018-10-08 09:39:00 -04:00
|
|
|
|
2018-07-31 17:31:13 -04:00
|
|
|
// classes generated by JMH can use all sorts of forbidden APIs but we have no influence at all and cannot exclude these classes
|
2020-04-15 16:23:55 -04:00
|
|
|
disableTasks('forbiddenApisMain')
|
2016-06-15 10:48:02 -04:00
|
|
|
|
|
|
|
// No licenses for our benchmark deps (we don't ship benchmarks)
|
|
|
|
dependencyLicenses.enabled = false
|
2017-12-26 04:51:47 -05:00
|
|
|
dependenciesInfo.enabled = false
|
2016-06-15 10:48:02 -04:00
|
|
|
|
2019-11-14 06:01:23 -05:00
|
|
|
thirdPartyAudit.ignoreViolations(
|
|
|
|
// these classes intentionally use JDK internal API (and this is ok since the project is maintained by Oracle employees)
|
|
|
|
'org.openjdk.jmh.profile.AbstractHotspotProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotThreadProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotClassloadingProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotCompilationProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotMemoryProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotRuntimeProfiler',
|
|
|
|
'org.openjdk.jmh.util.Utils'
|
2019-01-07 10:24:19 -05:00
|
|
|
)
|
2020-02-28 15:54:47 -05:00
|
|
|
|
|
|
|
spotless {
|
|
|
|
java {
|
|
|
|
// IDEs can sometimes run annotation processors that leave files in
|
|
|
|
// here, causing Spotless to complain. Even though this path ought not
|
|
|
|
// to exist, exclude it anyway in order to avoid spurious failures.
|
|
|
|
targetExclude 'src/main/generated/**/*.java'
|
|
|
|
}
|
|
|
|
}
|