Use plugins block everywhere for applying plugins (#3386)

* Use plugins block everywhere for applying plugins

* Actually it's library instrumentation
This commit is contained in:
Anuraag Agrawal 2021-06-24 11:13:35 +09:00 committed by GitHub
parent eb897a80d9
commit deb0e255cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
249 changed files with 783 additions and 439 deletions

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
description = 'e2e benchmark'

View File

@ -1,8 +1,8 @@
plugins {
id "com.github.johnrengelman.shadow"
}
id("com.github.johnrengelman.shadow")
apply plugin: "otel.java-conventions"
id("otel.java-conventions")
}
description = 'Integration Level Agent benchmarks.'
@ -10,8 +10,5 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8
subprojects { sub ->
sub.apply plugin: 'com.github.johnrengelman.shadow'
sub.apply plugin: "otel.java-conventions"
javadoc.enabled = false
}

View File

@ -1,3 +1,9 @@
plugins {
id("com.github.johnrengelman.shadow")
id("otel.java-conventions")
}
dependencies {
implementation project(':javaagent-bootstrap')
implementation project(':benchmark-integration')

View File

@ -1,5 +1,8 @@
plugins {
id "org.gradle.playframework" version "0.9"
id("com.github.johnrengelman.shadow")
id("otel.java-conventions")
}
afterEvaluate {

View File

@ -1,9 +1,9 @@
plugins {
id "me.champeau.jmh"
id "com.github.johnrengelman.shadow"
}
id("me.champeau.jmh")
id("com.github.johnrengelman.shadow")
apply plugin: "otel.java-conventions"
id("otel.java-conventions")
}
dependencies {
jmh platform(project(":dependencyManagement"))

View File

@ -1,8 +1,8 @@
plugins {
id("java-platform")
}
apply plugin: "otel.publish-conventions"
id("otel.publish-conventions")
}
description = "OpenTelemetry Instrumentation Bill of Materials (Alpha)"
group = "io.opentelemetry.instrumentation"

View File

@ -52,15 +52,6 @@ nexusPublishing {
description = 'OpenTelemetry instrumentations for Java'
allprojects {
apply plugin: 'idea'
idea {
module {
downloadJavadoc = false
downloadSources = false
}
}
plugins.withId('net.ltgt.nullaway') {
dependencies {
errorprone "com.uber.nullaway:nullaway"
@ -82,8 +73,6 @@ allprojects {
}
}
apply plugin: 'com.diffplug.spotless'
spotless {
// this formatting is applied at the root level, as some of these files are not in a submodules
// and would be missed otherwise

View File

@ -7,6 +7,7 @@ plugins {
groovy
checkstyle
codenarc
idea
id("org.gradle.test-retry")
@ -251,3 +252,10 @@ checkstyle {
toolVersion = "8.37"
maxWarnings = 0
}
idea {
module {
setDownloadJavadoc(false)
setDownloadSources(false)
}
}

View File

@ -155,7 +155,9 @@ from instrumented server or library will be used.
Create a module called `compile-stub` and add `compile-stub.gradle` with following content
```
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
```
In javaagent module add compile only dependency with
```

View File

@ -1,12 +1,12 @@
plugins {
id "com.github.johnrengelman.shadow"
id("com.github.johnrengelman.shadow")
id("otel.java-conventions")
id("otel.publish-conventions")
}
group = 'io.opentelemetry.instrumentation'
apply plugin: "otel.java-conventions"
apply plugin: "otel.publish-conventions"
configurations {
shadowInclude {
canBeResolved = true

View File

@ -1,13 +1,12 @@
plugins {
id 'org.xbib.gradle.plugin.jflex' version '1.5.0'
id("otel.java-conventions")
id("otel.jacoco-conventions")
id("otel.publish-conventions")
}
group = 'io.opentelemetry.instrumentation'
apply plugin: "otel.java-conventions"
apply plugin: "otel.jacoco-conventions"
apply plugin: "otel.publish-conventions"
def jflexTargetDir = file"${project.buildDir}/generated/jflex/sql"
def sqlSanitizerJflex = tasks.register("sqlSanitizerJflex", org.xbib.gradle.plugin.JFlexTask) {

View File

@ -1,5 +1,7 @@
apply plugin: "otel.javaagent-instrumentation"
apply plugin: "otel.scala-conventions"
plugins {
id("otel.javaagent-instrumentation")
id("otel.scala-conventions")
}
muzzle {
pass {

View File

@ -1,5 +1,7 @@
apply plugin: "otel.javaagent-instrumentation"
apply plugin: "otel.scala-conventions"
plugins {
id("otel.javaagent-instrumentation")
id("otel.scala-conventions")
}
muzzle {
pass {

View File

@ -1,5 +1,7 @@
apply plugin: "otel.javaagent-instrumentation"
apply plugin: "otel.scala-conventions"
plugins {
id("otel.javaagent-instrumentation")
id("otel.scala-conventions")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
testImplementation project(':instrumentation:apache-camel-2.20:javaagent')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
library "org.apache.dubbo:dubbo:2.7.0"

View File

@ -1,9 +1,7 @@
plugins {
id "java-library"
id("otel.java-conventions")
}
apply plugin: "otel.java-conventions"
def apacheDubboVersion = '2.7.5'
dependencies {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,5 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {
group = "commons-httpclient"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
fail {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,5 +1,7 @@
apply plugin: "otel.library-instrumentation"
apply plugin: "net.ltgt.nullaway"
plugins {
id("otel.library-instrumentation")
id("net.ltgt.nullaway")
}
dependencies {
library "com.linecorp.armeria:armeria:1.3.0"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
api project(':testing-common')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,20 +1,6 @@
/*
* Copyright The OpenTelemetry Authors
*
* Licensed 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: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,19 +1,6 @@
/*
* Copyright The OpenTelemetry Authors
*
* Licensed 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: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
compileOnly "io.opentelemetry:opentelemetry-sdk"

View File

@ -1,20 +1,6 @@
/*
* Copyright The OpenTelemetry Authors
*
* Licensed 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: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
api project(':testing-common')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
api project(':testing-common')

View File

@ -1,5 +1,7 @@
apply plugin: "otel.javaagent-instrumentation"
apply plugin: 'org.unbroken-dome.test-sets'
plugins {
id("otel.javaagent-instrumentation")
id("org.unbroken-dome.test-sets")
}
// compiling against 1.11.0, but instrumentation should work against 1.10.33 with varying effects,
// depending on the version's implementation. (i.e. DeleteOptionGroup may have less handlerCounts than

View File

@ -1,4 +1,6 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
implementation "io.opentelemetry:opentelemetry-extension-aws"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
api project(':testing-common')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
implementation "io.opentelemetry:opentelemetry-extension-aws"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
api project(':testing-common')

View File

@ -1,10 +1,11 @@
// Set properties before any plugins get loaded
plugins {
id("otel.javaagent-instrumentation")
}
ext {
cassandraDriverTestVersions = "[3.0,4.0)"
}
apply plugin: "otel.javaagent-instrumentation"
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
testImplementation "org.codehaus.groovy:groovy-all"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
// Version 2.7.5 and 2.7.8 were not released properly and muzzle cannot test against it causing failure.

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
api project(':testing-common')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,5 +1,7 @@
apply plugin: "otel.javaagent-instrumentation"
apply plugin: 'org.unbroken-dome.test-sets'
plugins {
id("otel.javaagent-instrumentation")
id("org.unbroken-dome.test-sets")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
compileOnly "org.elasticsearch.client:rest:5.0.0"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,3 +1,5 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
// No dependencies, elasticsearch library not actually used here.

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
testImplementation project(':instrumentation-api')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,7 +1,8 @@
apply plugin: "otel.javaagent-instrumentation"
apply plugin: "otel.scala-conventions"
apply plugin: 'org.unbroken-dome.test-sets'
plugins {
id("otel.javaagent-instrumentation")
id("otel.scala-conventions")
id("org.unbroken-dome.test-sets")
}
testSets {
// We need separate test sources to compile against latest Finatra.

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,20 +1,6 @@
/*
* Copyright The OpenTelemetry Authors
*
* Licensed 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: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
def grpcVersion = '1.6.0'

View File

@ -1,10 +1,8 @@
plugins {
id "java-library"
id "com.google.protobuf" version "0.8.16"
id("otel.java-conventions")
id("com.google.protobuf") version "0.8.16"
}
apply plugin: "otel.java-conventions"
def grpcVersion = '1.6.0'
protobuf {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
library "com.google.guava:guava:10.0"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -5,7 +5,9 @@
* instrumentation isn't able to reference it.
*/
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,5 +1,7 @@
apply plugin: "otel.javaagent-instrumentation"
apply plugin: 'org.unbroken-dome.test-sets'
plugins {
id("otel.javaagent-instrumentation")
id("org.unbroken-dome.test-sets")
}
muzzle {
pass {

View File

@ -1,8 +1,9 @@
/*
* Classes that are common to all versions of the Hibernate instrumentation.
*/
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
compileOnly project(':javaagent-api')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,8 +1,8 @@
// this project will run in isolation under the agent's classloader
plugins {
id "otel.shadow-conventions"
id("otel.shadow-conventions")
id("otel.java-conventions")
}
apply plugin: "otel.java-conventions"
Project instr_project = project
subprojects {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
dependencies {
compileOnly project(':javaagent-bootstrap')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
// this instrumentation applies to the class 'org.eclipse.osgi.internal.loader.BundleLoader'
// which is present in the following artifacts dating back to version 3.6 (2010):

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
testImplementation project(':instrumentation:internal:internal-proxy:javaagent')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
dependencies {
compileOnly project(':javaagent-bootstrap')

View File

@ -1,6 +1,6 @@
ext.skipPublish = true
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-testing")
}
dependencies {
testImplementation "org.apache.commons:commons-lang3:3.12.0"

View File

@ -1 +1,3 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
fail {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
// Cant assert fails because muzzle assumes all instrumentations will fail

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
// Cant assert fails because muzzle assumes all instrumentations will fail

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
// Cant assert fails because muzzle assumes all instrumentations will fail

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
// Cant assert fails because muzzle assumes all instrumentations will fail

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
dependencies {
compileOnly "javax.ws.rs:javax.ws.rs-api:2.0"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.java-conventions"
plugins {
id("otel.java-conventions")
}
dependencies {
api project(':testing-common')

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
compileOnly "org.apache.axis2:axis2-jaxws:1.6.0"

View File

@ -1,4 +1,6 @@
apply plugin: "otel.javaagent-instrumentation"
plugins {
id("otel.javaagent-instrumentation")
}
muzzle {
pass {

View File

@ -1,4 +1,6 @@
apply plugin: "otel.library-instrumentation"
plugins {
id("otel.library-instrumentation")
}
dependencies {
compileOnly "javax.servlet:javax.servlet-api:3.0.1"

Some files were not shown because too many files have changed in this diff Show More