From a15402f2b9aa8af515e4e44628f18345b653e27a Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Mon, 28 Nov 2022 12:59:11 -0800 Subject: [PATCH] Better dependabot configuration (#7298) I noticed that the smoke test projects weren't getting picked up by dependabot. It seems that dependabot's `directory` configuration doesn't really mean recursive, it means find the gradle file in that directory, and follow any includes from it. I tested this on my fork (temporarily bumping the dependabot limit to 100) and it only created 14 new PRs, so not too bad... --- .github/dependabot-symlinks/README.md | 6 - .github/dependabot-symlinks/build.gradle.kts | 1 - .../dependabot-symlinks/settings.gradle.kts | 1 - .github/dependabot.yml | 71 +- include-conventions.gradle.kts | 3 - settings.gradle.kts | 714 +++++++++--------- 6 files changed, 369 insertions(+), 427 deletions(-) delete mode 100644 .github/dependabot-symlinks/README.md delete mode 120000 .github/dependabot-symlinks/build.gradle.kts delete mode 120000 .github/dependabot-symlinks/settings.gradle.kts delete mode 100644 include-conventions.gradle.kts diff --git a/.github/dependabot-symlinks/README.md b/.github/dependabot-symlinks/README.md deleted file mode 100644 index 52b0beb6c4..0000000000 --- a/.github/dependabot-symlinks/README.md +++ /dev/null @@ -1,6 +0,0 @@ -This directory and the two symlinks in it are used by the -[dependabot configuration](../dependabot.yml), because we can't include the root directory -in the dependabot scanning since then it will pick up all of the old library versions that we -intentionally compile and test against. - -See https://github.com/dependabot/dependabot-core/issues/4364. diff --git a/.github/dependabot-symlinks/build.gradle.kts b/.github/dependabot-symlinks/build.gradle.kts deleted file mode 120000 index d9ef3a86cb..0000000000 --- a/.github/dependabot-symlinks/build.gradle.kts +++ /dev/null @@ -1 +0,0 @@ -../../build.gradle.kts \ No newline at end of file diff --git a/.github/dependabot-symlinks/settings.gradle.kts b/.github/dependabot-symlinks/settings.gradle.kts deleted file mode 120000 index 976ab1cc36..0000000000 --- a/.github/dependabot-symlinks/settings.gradle.kts +++ /dev/null @@ -1 +0,0 @@ -../../settings.gradle.kts \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1ac5484e96..93191e1e5b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,30 +13,26 @@ updates: interval: "daily" - package-ecosystem: "gradle" - # need to scope gradle dependency updates down in this repo because most of the instrumentations - # intentionally test against old library versions - directory: "/conventions" - rebase-strategy: "disabled" - schedule: - interval: "daily" - open-pull-requests-limit: 10 - - - package-ecosystem: "gradle" - # need to scope gradle dependency updates down in this repo because most of the instrumentations - # intentionally test against old library versions - directory: "/dependencyManagement" + directory: "/" + registries: + - gradle-plugin-portal ignore: - dependency-name: "ch.qos.logback:logback-classic" # logback 1.4+ requires Java 11 versions: [ "[1.4,)" ] + - dependency-name: "com.bmuschko.docker-remote-api" + # Publishing Servlet images for smoke tests is failing starting from 9.0.0 + # (see https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/7185) + # in particular, these commands are failing (reproducible locally): + # ./gradlew :smoke-tests:images:servlet:buildLinuxTestImages pushMatrix -PsmokeTestServer=jetty + # ./gradlew :smoke-tests:images:servlet:buildWindowsTestImages pushMatrix -PsmokeTestServer=jetty + versions: [ "[9,)" ] rebase-strategy: "disabled" schedule: interval: "daily" open-pull-requests-limit: 10 - package-ecosystem: "gradle" - # need to scope gradle dependency updates down in this repo because most of the instrumentations - # intentionally test against old library versions directory: "/examples/distro" ignore: - dependency-name: "javax.servlet:javax.servlet-api" @@ -56,8 +52,6 @@ updates: open-pull-requests-limit: 10 - package-ecosystem: "gradle" - # need to scope gradle dependency updates down in this repo because most of the instrumentations - # intentionally test against old library versions directory: "/examples/extension" ignore: - dependency-name: "javax.servlet:javax.servlet-api" @@ -75,48 +69,3 @@ updates: schedule: interval: "daily" open-pull-requests-limit: 10 - - - package-ecosystem: "gradle" - # need to scope gradle dependency updates down in this repo because most of the instrumentations - # intentionally test against old library versions - directory: "/gradle-plugins" - rebase-strategy: "disabled" - schedule: - interval: "daily" - open-pull-requests-limit: 10 - - - package-ecosystem: "gradle" - # need to scope gradle dependency updates down in this repo because most of the instrumentations - # intentionally test against old library versions - directory: "/smoke-tests" - rebase-strategy: "disabled" - schedule: - interval: "daily" - open-pull-requests-limit: 10 - - - package-ecosystem: "gradle" - # need to scope gradle dependency updates down in this repo because most of the instrumentations - # intentionally test against old library versions - directory: "/.github/dependabot-symlinks" - ignore: - - dependency-name: "com.bmuschko.docker-remote-api" - # Publishing Servlet images for smoke tests is failing starting from 9.0.0 - # (see https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/7185) - # in particular, these commands are failing (reproducible locally): - # ./gradlew :smoke-tests:images:servlet:buildLinuxTestImages pushMatrix -PsmokeTestServer=jetty - # ./gradlew :smoke-tests:images:servlet:buildWindowsTestImages pushMatrix -PsmokeTestServer=jetty - versions: [ "[9,)" ] - rebase-strategy: "disabled" - schedule: - interval: "daily" - open-pull-requests-limit: 10 - - - package-ecosystem: "gradle" - directory: "/" - allow: - - dependency-name: "com.gradle*" - registries: - - gradle-plugin-portal - rebase-strategy: "disabled" - schedule: - interval: "daily" diff --git a/include-conventions.gradle.kts b/include-conventions.gradle.kts deleted file mode 100644 index cfa589b7ba..0000000000 --- a/include-conventions.gradle.kts +++ /dev/null @@ -1,3 +0,0 @@ -// this file is only split out from settings.gradle.kts due to a dependabot limitation -// for details see .github/project-root-duplicates/README.md -includeBuild("conventions") diff --git a/settings.gradle.kts b/settings.gradle.kts index 78f6a886b7..c2d53fda13 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -83,9 +83,7 @@ buildCache { rootProject.name = "opentelemetry-java-instrumentation" -// this is only split out due to a dependabot limitation -// for details see .github/project-root-duplicates/README.md -apply(from = "include-conventions.gradle.kts") +includeBuild("conventions") include(":custom-checks") @@ -131,359 +129,365 @@ include(":smoke-tests:images:servlet:servlet-3.0") include(":smoke-tests:images:servlet:servlet-5.0") include(":smoke-tests:images:spring-boot") -include(":instrumentation:akka:akka-actor-2.3:javaagent") -include(":instrumentation:akka:akka-actor-fork-join-2.5:javaagent") -include(":instrumentation:akka:akka-http-10.0:javaagent") -include(":instrumentation:apache-camel-2.20:javaagent") -include(":instrumentation:apache-camel-2.20:javaagent-unit-tests") -include(":instrumentation:apache-dbcp-2.0:javaagent") -include(":instrumentation:apache-dbcp-2.0:library") -include(":instrumentation:apache-dbcp-2.0:testing") -include(":instrumentation:apache-dubbo-2.7:javaagent") -include(":instrumentation:apache-dubbo-2.7:library-autoconfigure") -include(":instrumentation:apache-dubbo-2.7:testing") -include(":instrumentation:apache-httpasyncclient-4.1:javaagent") -include(":instrumentation:apache-httpclient:apache-httpclient-2.0:javaagent") -include(":instrumentation:apache-httpclient:apache-httpclient-4.0:javaagent") -include(":instrumentation:apache-httpclient:apache-httpclient-4.3:library") -include(":instrumentation:apache-httpclient:apache-httpclient-4.3:testing") -include(":instrumentation:apache-httpclient:apache-httpclient-5.0:javaagent") -include(":instrumentation:armeria-1.3:javaagent") -include(":instrumentation:armeria-1.3:library") -include(":instrumentation:armeria-1.3:testing") -include(":instrumentation:async-http-client:async-http-client-1.9:javaagent") -include(":instrumentation:async-http-client:async-http-client-2.0:javaagent") -include(":instrumentation:aws-lambda:aws-lambda-core-1.0:javaagent") -include(":instrumentation:aws-lambda:aws-lambda-core-1.0:library") -include(":instrumentation:aws-lambda:aws-lambda-core-1.0:testing") -include(":instrumentation:aws-lambda:aws-lambda-events-2.2:javaagent") -include(":instrumentation:aws-lambda:aws-lambda-events-2.2:library") -include(":instrumentation:aws-lambda:aws-lambda-events-2.2:testing") -include(":instrumentation:aws-sdk:aws-sdk-1.11:javaagent") -include(":instrumentation:aws-sdk:aws-sdk-1.11:library") -include(":instrumentation:aws-sdk:aws-sdk-1.11:library-autoconfigure") -include(":instrumentation:aws-sdk:aws-sdk-1.11:testing") -include(":instrumentation:aws-sdk:aws-sdk-2.2:javaagent") -include(":instrumentation:aws-sdk:aws-sdk-2.2:library") -include(":instrumentation:aws-sdk:aws-sdk-2.2:library-autoconfigure") -include(":instrumentation:aws-sdk:aws-sdk-2.2:testing") -include(":instrumentation:azure-core:azure-core-1.14:javaagent") -include(":instrumentation:azure-core:azure-core-1.14:library-instrumentation-shaded") -include(":instrumentation:azure-core:azure-core-1.19:javaagent") -include(":instrumentation:azure-core:azure-core-1.19:library-instrumentation-shaded") -include(":instrumentation:cassandra:cassandra-3.0:javaagent") -include(":instrumentation:cassandra:cassandra-4.0:javaagent") -include(":instrumentation:cdi-testing") -include(":instrumentation:graphql-java-12.0:javaagent") -include(":instrumentation:graphql-java-12.0:library") -include(":instrumentation:graphql-java-12.0:testing") -include(":instrumentation:internal:internal-class-loader:javaagent") -include(":instrumentation:internal:internal-class-loader:javaagent-integration-tests") -include(":instrumentation:internal:internal-eclipse-osgi-3.6:javaagent") -include(":instrumentation:internal:internal-lambda:javaagent") -include(":instrumentation:internal:internal-lambda-java9:javaagent") -include(":instrumentation:internal:internal-reflection:javaagent") -include(":instrumentation:internal:internal-reflection:javaagent-integration-tests") -include(":instrumentation:internal:internal-url-class-loader:javaagent") -include(":instrumentation:internal:internal-url-class-loader:javaagent-integration-tests") -include(":instrumentation:c3p0-0.9:javaagent") -include(":instrumentation:c3p0-0.9:library") -include(":instrumentation:c3p0-0.9:testing") -include(":instrumentation:couchbase:couchbase-2.0:javaagent") -include(":instrumentation:couchbase:couchbase-2.6:javaagent") -include(":instrumentation:couchbase:couchbase-2-common:javaagent") -include(":instrumentation:couchbase:couchbase-2-common:javaagent-unit-tests") -include(":instrumentation:couchbase:couchbase-3.1:javaagent") -include(":instrumentation:couchbase:couchbase-3.1:tracing-opentelemetry-shaded") -include(":instrumentation:couchbase:couchbase-3.1.6:javaagent") -include(":instrumentation:couchbase:couchbase-3.1.6:tracing-opentelemetry-shaded") -include(":instrumentation:couchbase:couchbase-3.2:javaagent") -include(":instrumentation:couchbase:couchbase-3.2:tracing-opentelemetry-shaded") -include(":instrumentation:couchbase:couchbase-common:testing") -include(":instrumentation:dropwizard:dropwizard-metrics-4.0:javaagent") -include(":instrumentation:dropwizard:dropwizard-views-0.7:javaagent") -include(":instrumentation:dropwizard:dropwizard-testing") -include(":instrumentation:elasticsearch:elasticsearch-rest-common:javaagent") -include(":instrumentation:opensearch:opensearch-rest-common:javaagent") -include(":instrumentation:elasticsearch:elasticsearch-rest-5.0:javaagent") -include(":instrumentation:elasticsearch:elasticsearch-rest-6.4:javaagent") -include(":instrumentation:elasticsearch:elasticsearch-rest-7.0:javaagent") -include(":instrumentation:opensearch:opensearch-rest-1.0:javaagent") -include(":instrumentation:elasticsearch:elasticsearch-transport-common:javaagent") -include(":instrumentation:elasticsearch:elasticsearch-transport-common:testing") -include(":instrumentation:elasticsearch:elasticsearch-transport-5.0:javaagent") -include(":instrumentation:elasticsearch:elasticsearch-transport-5.3:javaagent") -include(":instrumentation:elasticsearch:elasticsearch-transport-6.0:javaagent") -include(":instrumentation:executors:bootstrap") -include(":instrumentation:executors:javaagent") -include(":instrumentation:executors:testing") -include(":instrumentation:external-annotations:javaagent") -include(":instrumentation:external-annotations:javaagent-unit-tests") -include(":instrumentation:finatra-2.9:javaagent") -include(":instrumentation:geode-1.4:javaagent") -include(":instrumentation:google-http-client-1.19:javaagent") -include(":instrumentation:grails-3.0:javaagent") -include(":instrumentation:grizzly-2.0:javaagent") -include(":instrumentation:grpc-1.6:javaagent") -include(":instrumentation:grpc-1.6:library") -include(":instrumentation:grpc-1.6:testing") -include(":instrumentation:guava-10.0:javaagent") -include(":instrumentation:guava-10.0:library") -include(":instrumentation:gwt-2.0:javaagent") -include(":instrumentation:hibernate:hibernate-3.3:javaagent") -include(":instrumentation:hibernate:hibernate-4.0:javaagent") -include(":instrumentation:hibernate:hibernate-common:javaagent") -include(":instrumentation:hibernate:hibernate-procedure-call-4.3:javaagent") -include(":instrumentation:hikaricp-3.0:javaagent") -include(":instrumentation:hikaricp-3.0:library") -include(":instrumentation:hikaricp-3.0:testing") -include(":instrumentation:http-url-connection:javaagent") -include(":instrumentation:hystrix-1.4:javaagent") -include(":instrumentation:java-http-client:javaagent") -include(":instrumentation:java-util-logging:javaagent") -include(":instrumentation:java-util-logging:shaded-stub-for-instrumenting") -include(":instrumentation:jaxrs:jaxrs-common:bootstrap") -include(":instrumentation:jaxrs:jaxrs-common:javaagent") -include(":instrumentation:jaxrs:jaxrs-common:testing") -include(":instrumentation:jaxrs:jaxrs-1.0:javaagent") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-annotations:javaagent") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-arquillian-testing") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:javaagent") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-cxf-3.2:javaagent") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-jersey-2.0:javaagent") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-payara-testing") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-resteasy-3.0:javaagent") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-resteasy-3.1:javaagent") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-resteasy-common:javaagent") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:testing") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-tomee-testing") -include(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-wildfly-testing") -include(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-annotations:javaagent") -include(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-common:javaagent") -include(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-common:testing") -include(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-jersey-3.0:javaagent") -include(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-resteasy-6.0:javaagent") -include(":instrumentation:jaxrs-client:jaxrs-client-1.1:javaagent") -include(":instrumentation:jaxrs-client:jaxrs-client-2.0-testing") -include(":instrumentation:jaxws:jaxws-2.0:javaagent") -include(":instrumentation:jaxws:jaxws-2.0-arquillian-testing") -include(":instrumentation:jaxws:jaxws-2.0-axis2-1.6:javaagent") -include(":instrumentation:jaxws:jaxws-2.0-cxf-3.0:javaagent") -include(":instrumentation:jaxws:jaxws-2.0-cxf-3.0:javaagent-unit-tests") -include(":instrumentation:jaxws:jaxws-2.0-metro-2.2:javaagent") -include(":instrumentation:jaxws:jaxws-2.0-common-testing") -include(":instrumentation:jaxws:jaxws-2.0-tomee-testing") -include(":instrumentation:jaxws:jaxws-2.0-wildfly-testing") -include(":instrumentation:jaxws:jaxws-common:javaagent") -include(":instrumentation:jaxws:jaxws-jws-api-1.1:javaagent") -include(":instrumentation:jboss-logmanager:jboss-logmanager-appender-1.1:javaagent") -include(":instrumentation:jboss-logmanager:jboss-logmanager-mdc-1.1:javaagent") -include(":instrumentation:jdbc:bootstrap") -include(":instrumentation:jdbc:javaagent") -include(":instrumentation:jdbc:library") -include(":instrumentation:jdbc:testing") -include(":instrumentation:jedis:jedis-1.4:javaagent") -include(":instrumentation:jedis:jedis-3.0:javaagent") -include(":instrumentation:jedis:jedis-4.0:javaagent") -include(":instrumentation:jedis:jedis-common:javaagent") -include(":instrumentation:jetty:jetty-8.0:javaagent") -include(":instrumentation:jetty:jetty-11.0:javaagent") -include(":instrumentation:jetty:jetty-common:javaagent") -include(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:javaagent") -include(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:library") -include(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:testing") -include(":instrumentation:jms-1.1:javaagent") -include(":instrumentation:jms-1.1:javaagent-unit-tests") -include(":instrumentation:jmx-metrics:javaagent") -include(":instrumentation:jmx-metrics:library") -include(":instrumentation:jsf:jsf-common:javaagent") -include(":instrumentation:jsf:jsf-common:testing") -include(":instrumentation:jsf:jsf-mojarra-1.2:javaagent") -include(":instrumentation:jsf:jsf-myfaces-1.2:javaagent") -include(":instrumentation:jsp-2.3:javaagent") -include(":instrumentation:kafka:kafka-clients:kafka-clients-0.11:bootstrap") -include(":instrumentation:kafka:kafka-clients:kafka-clients-0.11:javaagent") -include(":instrumentation:kafka:kafka-clients:kafka-clients-0.11:testing") -include(":instrumentation:kafka:kafka-clients:kafka-clients-2.6:library") -include(":instrumentation:kafka:kafka-clients:kafka-clients-common:library") -include(":instrumentation:kafka:kafka-streams-0.11:javaagent") -include(":instrumentation:kotlinx-coroutines:javaagent") -include(":instrumentation:ktor:ktor-1.0:library") -include(":instrumentation:ktor:ktor-2.0:library") -include(":instrumentation:ktor:ktor-common:library") -include(":instrumentation:kubernetes-client-7.0:javaagent") -include(":instrumentation:kubernetes-client-7.0:javaagent-unit-tests") -include(":instrumentation:lettuce:lettuce-common:library") -include(":instrumentation:lettuce:lettuce-4.0:javaagent") -include(":instrumentation:lettuce:lettuce-5.0:javaagent") -include(":instrumentation:lettuce:lettuce-5.1:javaagent") -include(":instrumentation:lettuce:lettuce-5.1:library") -include(":instrumentation:lettuce:lettuce-5.1:testing") -include(":instrumentation:liberty:compile-stub") -include(":instrumentation:liberty:liberty-20.0:javaagent") -include(":instrumentation:liberty:liberty-dispatcher-20.0:javaagent") -include(":instrumentation:log4j:log4j-appender-1.2:javaagent") -include(":instrumentation:log4j:log4j-mdc-1.2:javaagent") -include(":instrumentation:log4j:log4j-context-data:log4j-context-data-2.7:javaagent") -include(":instrumentation:log4j:log4j-context-data:log4j-context-data-2.17:javaagent") -include(":instrumentation:log4j:log4j-context-data:log4j-context-data-2.17:library-autoconfigure") -include(":instrumentation:log4j:log4j-context-data:log4j-context-data-common:testing") -include(":instrumentation:log4j:log4j-appender-2.17:javaagent") -include(":instrumentation:log4j:log4j-appender-2.17:library") -include(":instrumentation:logback:logback-appender-1.0:javaagent") -include(":instrumentation:logback:logback-appender-1.0:library") -include(":instrumentation:logback:logback-mdc-1.0:javaagent") -include(":instrumentation:logback:logback-mdc-1.0:library") -include(":instrumentation:logback:logback-mdc-1.0:testing") -include(":instrumentation:methods:javaagent") -include(":instrumentation:micrometer:micrometer-1.5:javaagent") -include(":instrumentation:micrometer:micrometer-1.5:library") -include(":instrumentation:micrometer:micrometer-1.5:testing") -include(":instrumentation:mongo:mongo-3.1:javaagent") -include(":instrumentation:mongo:mongo-3.1:library") -include(":instrumentation:mongo:mongo-3.1:testing") -include(":instrumentation:mongo:mongo-3.7:javaagent") -include(":instrumentation:mongo:mongo-4.0:javaagent") -include(":instrumentation:mongo:mongo-async-3.3:javaagent") -include(":instrumentation:mongo:mongo-common:testing") -include(":instrumentation:netty:netty-3.8:javaagent") -include(":instrumentation:netty:netty-4.0:javaagent") -include(":instrumentation:netty:netty-4.1:javaagent") -include(":instrumentation:netty:netty-4.1:library") -include(":instrumentation:netty:netty-4.1:testing") -include(":instrumentation:netty:netty-4-common:javaagent") -include(":instrumentation:netty:netty-4-common:library") -include(":instrumentation:netty:netty-common:library") -include(":instrumentation:okhttp:okhttp-2.2:javaagent") -include(":instrumentation:okhttp:okhttp-3.0:javaagent") -include(":instrumentation:okhttp:okhttp-3.0:library") -include(":instrumentation:okhttp:okhttp-3.0:testing") -include(":instrumentation:opentelemetry-api:opentelemetry-api-1.0:javaagent") -include(":instrumentation:opentelemetry-api:opentelemetry-api-1.4:javaagent") -include(":instrumentation:opentelemetry-api:opentelemetry-api-1.10:javaagent") -include(":instrumentation:opentelemetry-api:opentelemetry-api-logs-1.19:javaagent") -include(":instrumentation:opentelemetry-extension-annotations-1.0:javaagent") -include(":instrumentation:opentelemetry-instrumentation-annotations-1.16:javaagent") -include(":instrumentation:opentelemetry-instrumentation-api:javaagent") -include(":instrumentation:opentelemetry-instrumentation-api:testing") -include(":instrumentation:oracle-ucp-11.2:javaagent") -include(":instrumentation:oracle-ucp-11.2:library") -include(":instrumentation:oracle-ucp-11.2:testing") -include(":instrumentation:oshi:javaagent") -include(":instrumentation:oshi:library") -include(":instrumentation:oshi:testing") -include(":instrumentation:play:play-mvc:play-mvc-2.4:javaagent") -include(":instrumentation:play:play-mvc:play-mvc-2.6:javaagent") -include(":instrumentation:play:play-ws:play-ws-1.0:javaagent") -include(":instrumentation:play:play-ws:play-ws-2.0:javaagent") -include(":instrumentation:play:play-ws:play-ws-2.1:javaagent") -include(":instrumentation:play:play-ws:play-ws-common:javaagent") -include(":instrumentation:play:play-ws:play-ws-common:testing") -include(":instrumentation:quartz-2.0:javaagent") -include(":instrumentation:quartz-2.0:library") -include(":instrumentation:quartz-2.0:testing") -include(":instrumentation:rabbitmq-2.7:javaagent") -include(":instrumentation:ratpack:ratpack-1.4:javaagent") -include(":instrumentation:ratpack:ratpack-1.4:testing") -include(":instrumentation:ratpack:ratpack-1.7:library") -include(":instrumentation:reactor:reactor-3.1:javaagent") -include(":instrumentation:reactor:reactor-3.1:library") -include(":instrumentation:reactor:reactor-3.1:testing") -include(":instrumentation:reactor:reactor-netty:reactor-netty-0.9:javaagent") -include(":instrumentation:reactor:reactor-netty:reactor-netty-1.0:javaagent") -include(":instrumentation:reactor:reactor-netty:reactor-netty-1.0:javaagent-unit-tests") -include(":instrumentation:rediscala-1.8:javaagent") -include(":instrumentation:redisson:redisson-3.0:javaagent") -include(":instrumentation:redisson:redisson-3.17:javaagent") -include(":instrumentation:redisson:redisson-common:javaagent") -include(":instrumentation:redisson:redisson-common:testing") -include(":instrumentation:resources:library") -include(":instrumentation:restlet:restlet-1.1:javaagent") -include(":instrumentation:restlet:restlet-1.1:library") -include(":instrumentation:restlet:restlet-1.1:testing") -include(":instrumentation:restlet:restlet-2.0:javaagent") -include(":instrumentation:restlet:restlet-2.0:library") -include(":instrumentation:restlet:restlet-2.0:testing") -include(":instrumentation:rmi:bootstrap") -include(":instrumentation:rmi:javaagent") -include(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-4.8:javaagent") -include(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-4.8:library") -include(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-4.8:testing") -include(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-5.0:javaagent") -include(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-5.0:testing") -include(":instrumentation:runtime-metrics:javaagent") -include(":instrumentation:runtime-metrics:library") -include(":instrumentation:rxjava:rxjava-1.0:library") -include(":instrumentation:rxjava:rxjava-2.0:library") -include(":instrumentation:rxjava:rxjava-2.0:testing") -include(":instrumentation:rxjava:rxjava-2.0:javaagent") -include(":instrumentation:rxjava:rxjava-3.0:library") -include(":instrumentation:rxjava:rxjava-3.0:javaagent") -include(":instrumentation:rxjava:rxjava-3.1.1:library") -include(":instrumentation:rxjava:rxjava-3.1.1:javaagent") -include(":instrumentation:rxjava:rxjava-3-common:library") -include(":instrumentation:rxjava:rxjava-3-common:testing") -include(":instrumentation:scala-fork-join-2.8:javaagent") -include(":instrumentation:servlet:servlet-common:bootstrap") -include(":instrumentation:servlet:servlet-common:javaagent") -include(":instrumentation:servlet:servlet-javax-common:javaagent") -include(":instrumentation:servlet:servlet-2.2:javaagent") -include(":instrumentation:servlet:servlet-3.0:javaagent") -include(":instrumentation:servlet:servlet-5.0:javaagent") -include(":instrumentation:spark-2.3:javaagent") -include(":instrumentation:spring:spring-batch-3.0:javaagent") -include(":instrumentation:spring:spring-boot-actuator-autoconfigure-2.0:javaagent") -include(":instrumentation:spring:spring-boot-resources:library") -include(":instrumentation:spring:spring-core-2.0:javaagent") -include(":instrumentation:spring:spring-data-1.8:javaagent") -include(":instrumentation:spring:spring-integration-4.1:javaagent") -include(":instrumentation:spring:spring-integration-4.1:library") -include(":instrumentation:spring:spring-integration-4.1:testing") -include(":instrumentation:spring:spring-jms-2.0:javaagent") -include(":instrumentation:spring:spring-kafka-2.7:javaagent") -include(":instrumentation:spring:spring-kafka-2.7:library") -include(":instrumentation:spring:spring-kafka-2.7:testing") -include(":instrumentation:spring:spring-rabbit-1.0:javaagent") -include(":instrumentation:spring:spring-rmi-4.0:javaagent") -include(":instrumentation:spring:spring-scheduling-3.1:javaagent") -include(":instrumentation:spring:spring-web-3.1:javaagent") -include(":instrumentation:spring:spring-web-3.1:library") -include(":instrumentation:spring:spring-web-3.1:testing") -include(":instrumentation:spring:spring-webmvc-3.1:javaagent") -include(":instrumentation:spring:spring-webmvc-3.1:wildfly-testing") -include(":instrumentation:spring:spring-webmvc-5.3:library") -include(":instrumentation:spring:spring-webflux-5.0:javaagent") -include(":instrumentation:spring:spring-webflux-5.0:library") -include(":instrumentation:spring:spring-ws-2.0:javaagent") -include(":instrumentation:spring:spring-boot-autoconfigure") -include(":instrumentation:spring:starters:spring-boot-starter") -include(":instrumentation:spring:starters:jaeger-spring-boot-starter") -include(":instrumentation:spring:starters:zipkin-spring-boot-starter") -include(":instrumentation:spymemcached-2.12:javaagent") -include(":instrumentation:struts-2.3:javaagent") -include(":instrumentation:tapestry-5.4:javaagent") -include(":instrumentation:tomcat:tomcat-7.0:javaagent") -include(":instrumentation:tomcat:tomcat-10.0:javaagent") -include(":instrumentation:tomcat:tomcat-common:javaagent") -include(":instrumentation:tomcat:tomcat-jdbc") -include(":instrumentation:twilio-6.6:javaagent") -include(":instrumentation:undertow-1.4:bootstrap") -include(":instrumentation:undertow-1.4:javaagent") -include(":instrumentation:vaadin-14.2:javaagent") -include(":instrumentation:vaadin-14.2:testing") -include(":instrumentation:vertx:vertx-http-client:vertx-http-client-3.0:javaagent") -include(":instrumentation:vertx:vertx-http-client:vertx-http-client-4.0:javaagent") -include(":instrumentation:vertx:vertx-http-client:vertx-http-client-common:javaagent") -include(":instrumentation:vertx:vertx-kafka-client-3.6:javaagent") -include(":instrumentation:vertx:vertx-kafka-client-3.6:testing") -include(":instrumentation:vertx:vertx-rx-java-3.5:javaagent") -include(":instrumentation:vertx:vertx-web-3.0:javaagent") -include(":instrumentation:vertx:vertx-web-3.0:testing") -include(":instrumentation:vibur-dbcp-11.0:javaagent") -include(":instrumentation:vibur-dbcp-11.0:library") -include(":instrumentation:vibur-dbcp-11.0:testing") -include(":instrumentation:wicket-8.0:javaagent") +hideFromDependabot("instrumentation:akka:akka-actor-2.3:javaagent") +hideFromDependabot(":instrumentation:akka:akka-actor-fork-join-2.5:javaagent") +hideFromDependabot(":instrumentation:akka:akka-http-10.0:javaagent") +hideFromDependabot(":instrumentation:apache-camel-2.20:javaagent") +hideFromDependabot(":instrumentation:apache-camel-2.20:javaagent-unit-tests") +hideFromDependabot(":instrumentation:apache-dbcp-2.0:javaagent") +hideFromDependabot(":instrumentation:apache-dbcp-2.0:library") +hideFromDependabot(":instrumentation:apache-dbcp-2.0:testing") +hideFromDependabot(":instrumentation:apache-dubbo-2.7:javaagent") +hideFromDependabot(":instrumentation:apache-dubbo-2.7:library-autoconfigure") +hideFromDependabot(":instrumentation:apache-dubbo-2.7:testing") +hideFromDependabot(":instrumentation:apache-httpasyncclient-4.1:javaagent") +hideFromDependabot(":instrumentation:apache-httpclient:apache-httpclient-2.0:javaagent") +hideFromDependabot(":instrumentation:apache-httpclient:apache-httpclient-4.0:javaagent") +hideFromDependabot(":instrumentation:apache-httpclient:apache-httpclient-4.3:library") +hideFromDependabot(":instrumentation:apache-httpclient:apache-httpclient-4.3:testing") +hideFromDependabot(":instrumentation:apache-httpclient:apache-httpclient-5.0:javaagent") +hideFromDependabot(":instrumentation:armeria-1.3:javaagent") +hideFromDependabot(":instrumentation:armeria-1.3:library") +hideFromDependabot(":instrumentation:armeria-1.3:testing") +hideFromDependabot(":instrumentation:async-http-client:async-http-client-1.9:javaagent") +hideFromDependabot(":instrumentation:async-http-client:async-http-client-2.0:javaagent") +hideFromDependabot(":instrumentation:aws-lambda:aws-lambda-core-1.0:javaagent") +hideFromDependabot(":instrumentation:aws-lambda:aws-lambda-core-1.0:library") +hideFromDependabot(":instrumentation:aws-lambda:aws-lambda-core-1.0:testing") +hideFromDependabot(":instrumentation:aws-lambda:aws-lambda-events-2.2:javaagent") +hideFromDependabot(":instrumentation:aws-lambda:aws-lambda-events-2.2:library") +hideFromDependabot(":instrumentation:aws-lambda:aws-lambda-events-2.2:testing") +hideFromDependabot(":instrumentation:aws-sdk:aws-sdk-1.11:javaagent") +hideFromDependabot(":instrumentation:aws-sdk:aws-sdk-1.11:library") +hideFromDependabot(":instrumentation:aws-sdk:aws-sdk-1.11:library-autoconfigure") +hideFromDependabot(":instrumentation:aws-sdk:aws-sdk-1.11:testing") +hideFromDependabot(":instrumentation:aws-sdk:aws-sdk-2.2:javaagent") +hideFromDependabot(":instrumentation:aws-sdk:aws-sdk-2.2:library") +hideFromDependabot(":instrumentation:aws-sdk:aws-sdk-2.2:library-autoconfigure") +hideFromDependabot(":instrumentation:aws-sdk:aws-sdk-2.2:testing") +hideFromDependabot(":instrumentation:azure-core:azure-core-1.14:javaagent") +hideFromDependabot(":instrumentation:azure-core:azure-core-1.14:library-instrumentation-shaded") +hideFromDependabot(":instrumentation:azure-core:azure-core-1.19:javaagent") +hideFromDependabot(":instrumentation:azure-core:azure-core-1.19:library-instrumentation-shaded") +hideFromDependabot(":instrumentation:cassandra:cassandra-3.0:javaagent") +hideFromDependabot(":instrumentation:cassandra:cassandra-4.0:javaagent") +hideFromDependabot(":instrumentation:cdi-testing") +hideFromDependabot(":instrumentation:graphql-java-12.0:javaagent") +hideFromDependabot(":instrumentation:graphql-java-12.0:library") +hideFromDependabot(":instrumentation:graphql-java-12.0:testing") +hideFromDependabot(":instrumentation:internal:internal-class-loader:javaagent") +hideFromDependabot(":instrumentation:internal:internal-class-loader:javaagent-integration-tests") +hideFromDependabot(":instrumentation:internal:internal-eclipse-osgi-3.6:javaagent") +hideFromDependabot(":instrumentation:internal:internal-lambda:javaagent") +hideFromDependabot(":instrumentation:internal:internal-lambda-java9:javaagent") +hideFromDependabot(":instrumentation:internal:internal-reflection:javaagent") +hideFromDependabot(":instrumentation:internal:internal-reflection:javaagent-integration-tests") +hideFromDependabot(":instrumentation:internal:internal-url-class-loader:javaagent") +hideFromDependabot(":instrumentation:internal:internal-url-class-loader:javaagent-integration-tests") +hideFromDependabot(":instrumentation:c3p0-0.9:javaagent") +hideFromDependabot(":instrumentation:c3p0-0.9:library") +hideFromDependabot(":instrumentation:c3p0-0.9:testing") +hideFromDependabot(":instrumentation:couchbase:couchbase-2.0:javaagent") +hideFromDependabot(":instrumentation:couchbase:couchbase-2.6:javaagent") +hideFromDependabot(":instrumentation:couchbase:couchbase-2-common:javaagent") +hideFromDependabot(":instrumentation:couchbase:couchbase-2-common:javaagent-unit-tests") +hideFromDependabot(":instrumentation:couchbase:couchbase-3.1:javaagent") +hideFromDependabot(":instrumentation:couchbase:couchbase-3.1:tracing-opentelemetry-shaded") +hideFromDependabot(":instrumentation:couchbase:couchbase-3.1.6:javaagent") +hideFromDependabot(":instrumentation:couchbase:couchbase-3.1.6:tracing-opentelemetry-shaded") +hideFromDependabot(":instrumentation:couchbase:couchbase-3.2:javaagent") +hideFromDependabot(":instrumentation:couchbase:couchbase-3.2:tracing-opentelemetry-shaded") +hideFromDependabot(":instrumentation:couchbase:couchbase-common:testing") +hideFromDependabot(":instrumentation:dropwizard:dropwizard-metrics-4.0:javaagent") +hideFromDependabot(":instrumentation:dropwizard:dropwizard-views-0.7:javaagent") +hideFromDependabot(":instrumentation:dropwizard:dropwizard-testing") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-rest-common:javaagent") +hideFromDependabot(":instrumentation:opensearch:opensearch-rest-common:javaagent") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-rest-5.0:javaagent") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-rest-6.4:javaagent") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-rest-7.0:javaagent") +hideFromDependabot(":instrumentation:opensearch:opensearch-rest-1.0:javaagent") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-transport-common:javaagent") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-transport-common:testing") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-transport-5.0:javaagent") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-transport-5.3:javaagent") +hideFromDependabot(":instrumentation:elasticsearch:elasticsearch-transport-6.0:javaagent") +hideFromDependabot(":instrumentation:executors:bootstrap") +hideFromDependabot(":instrumentation:executors:javaagent") +hideFromDependabot(":instrumentation:executors:testing") +hideFromDependabot(":instrumentation:external-annotations:javaagent") +hideFromDependabot(":instrumentation:external-annotations:javaagent-unit-tests") +hideFromDependabot(":instrumentation:finatra-2.9:javaagent") +hideFromDependabot(":instrumentation:geode-1.4:javaagent") +hideFromDependabot(":instrumentation:google-http-client-1.19:javaagent") +hideFromDependabot(":instrumentation:grails-3.0:javaagent") +hideFromDependabot(":instrumentation:grizzly-2.0:javaagent") +hideFromDependabot(":instrumentation:grpc-1.6:javaagent") +hideFromDependabot(":instrumentation:grpc-1.6:library") +hideFromDependabot(":instrumentation:grpc-1.6:testing") +hideFromDependabot(":instrumentation:guava-10.0:javaagent") +hideFromDependabot(":instrumentation:guava-10.0:library") +hideFromDependabot(":instrumentation:gwt-2.0:javaagent") +hideFromDependabot(":instrumentation:hibernate:hibernate-3.3:javaagent") +hideFromDependabot(":instrumentation:hibernate:hibernate-4.0:javaagent") +hideFromDependabot(":instrumentation:hibernate:hibernate-common:javaagent") +hideFromDependabot(":instrumentation:hibernate:hibernate-procedure-call-4.3:javaagent") +hideFromDependabot(":instrumentation:hikaricp-3.0:javaagent") +hideFromDependabot(":instrumentation:hikaricp-3.0:library") +hideFromDependabot(":instrumentation:hikaricp-3.0:testing") +hideFromDependabot(":instrumentation:http-url-connection:javaagent") +hideFromDependabot(":instrumentation:hystrix-1.4:javaagent") +hideFromDependabot(":instrumentation:java-http-client:javaagent") +hideFromDependabot(":instrumentation:java-util-logging:javaagent") +hideFromDependabot(":instrumentation:java-util-logging:shaded-stub-for-instrumenting") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-common:bootstrap") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-common:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-common:testing") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-1.0:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-annotations:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-arquillian-testing") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-cxf-3.2:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-jersey-2.0:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-payara-testing") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-resteasy-3.0:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-resteasy-3.1:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-resteasy-common:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:testing") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-tomee-testing") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-wildfly-testing") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-annotations:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-common:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-common:testing") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-jersey-3.0:javaagent") +hideFromDependabot(":instrumentation:jaxrs:jaxrs-3.0:jaxrs-3.0-resteasy-6.0:javaagent") +hideFromDependabot(":instrumentation:jaxrs-client:jaxrs-client-1.1:javaagent") +hideFromDependabot(":instrumentation:jaxrs-client:jaxrs-client-2.0-testing") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0:javaagent") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0-arquillian-testing") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0-axis2-1.6:javaagent") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0-cxf-3.0:javaagent") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0-cxf-3.0:javaagent-unit-tests") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0-metro-2.2:javaagent") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0-common-testing") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0-tomee-testing") +hideFromDependabot(":instrumentation:jaxws:jaxws-2.0-wildfly-testing") +hideFromDependabot(":instrumentation:jaxws:jaxws-common:javaagent") +hideFromDependabot(":instrumentation:jaxws:jaxws-jws-api-1.1:javaagent") +hideFromDependabot(":instrumentation:jboss-logmanager:jboss-logmanager-appender-1.1:javaagent") +hideFromDependabot(":instrumentation:jboss-logmanager:jboss-logmanager-mdc-1.1:javaagent") +hideFromDependabot(":instrumentation:jdbc:bootstrap") +hideFromDependabot(":instrumentation:jdbc:javaagent") +hideFromDependabot(":instrumentation:jdbc:library") +hideFromDependabot(":instrumentation:jdbc:testing") +hideFromDependabot(":instrumentation:jedis:jedis-1.4:javaagent") +hideFromDependabot(":instrumentation:jedis:jedis-3.0:javaagent") +hideFromDependabot(":instrumentation:jedis:jedis-4.0:javaagent") +hideFromDependabot(":instrumentation:jedis:jedis-common:javaagent") +hideFromDependabot(":instrumentation:jetty:jetty-8.0:javaagent") +hideFromDependabot(":instrumentation:jetty:jetty-11.0:javaagent") +hideFromDependabot(":instrumentation:jetty:jetty-common:javaagent") +hideFromDependabot(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:javaagent") +hideFromDependabot(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:library") +hideFromDependabot(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:testing") +hideFromDependabot(":instrumentation:jms-1.1:javaagent") +hideFromDependabot(":instrumentation:jms-1.1:javaagent-unit-tests") +hideFromDependabot(":instrumentation:jmx-metrics:javaagent") +hideFromDependabot(":instrumentation:jmx-metrics:library") +hideFromDependabot(":instrumentation:jsf:jsf-common:javaagent") +hideFromDependabot(":instrumentation:jsf:jsf-common:testing") +hideFromDependabot(":instrumentation:jsf:jsf-mojarra-1.2:javaagent") +hideFromDependabot(":instrumentation:jsf:jsf-myfaces-1.2:javaagent") +hideFromDependabot(":instrumentation:jsp-2.3:javaagent") +hideFromDependabot(":instrumentation:kafka:kafka-clients:kafka-clients-0.11:bootstrap") +hideFromDependabot(":instrumentation:kafka:kafka-clients:kafka-clients-0.11:javaagent") +hideFromDependabot(":instrumentation:kafka:kafka-clients:kafka-clients-0.11:testing") +hideFromDependabot(":instrumentation:kafka:kafka-clients:kafka-clients-2.6:library") +hideFromDependabot(":instrumentation:kafka:kafka-clients:kafka-clients-common:library") +hideFromDependabot(":instrumentation:kafka:kafka-streams-0.11:javaagent") +hideFromDependabot(":instrumentation:kotlinx-coroutines:javaagent") +hideFromDependabot(":instrumentation:ktor:ktor-1.0:library") +hideFromDependabot(":instrumentation:ktor:ktor-2.0:library") +hideFromDependabot(":instrumentation:ktor:ktor-common:library") +hideFromDependabot(":instrumentation:kubernetes-client-7.0:javaagent") +hideFromDependabot(":instrumentation:kubernetes-client-7.0:javaagent-unit-tests") +hideFromDependabot(":instrumentation:lettuce:lettuce-common:library") +hideFromDependabot(":instrumentation:lettuce:lettuce-4.0:javaagent") +hideFromDependabot(":instrumentation:lettuce:lettuce-5.0:javaagent") +hideFromDependabot(":instrumentation:lettuce:lettuce-5.1:javaagent") +hideFromDependabot(":instrumentation:lettuce:lettuce-5.1:library") +hideFromDependabot(":instrumentation:lettuce:lettuce-5.1:testing") +hideFromDependabot(":instrumentation:liberty:compile-stub") +hideFromDependabot(":instrumentation:liberty:liberty-20.0:javaagent") +hideFromDependabot(":instrumentation:liberty:liberty-dispatcher-20.0:javaagent") +hideFromDependabot(":instrumentation:log4j:log4j-appender-1.2:javaagent") +hideFromDependabot(":instrumentation:log4j:log4j-mdc-1.2:javaagent") +hideFromDependabot(":instrumentation:log4j:log4j-context-data:log4j-context-data-2.7:javaagent") +hideFromDependabot(":instrumentation:log4j:log4j-context-data:log4j-context-data-2.17:javaagent") +hideFromDependabot(":instrumentation:log4j:log4j-context-data:log4j-context-data-2.17:library-autoconfigure") +hideFromDependabot(":instrumentation:log4j:log4j-context-data:log4j-context-data-common:testing") +hideFromDependabot(":instrumentation:log4j:log4j-appender-2.17:javaagent") +hideFromDependabot(":instrumentation:log4j:log4j-appender-2.17:library") +hideFromDependabot(":instrumentation:logback:logback-appender-1.0:javaagent") +hideFromDependabot(":instrumentation:logback:logback-appender-1.0:library") +hideFromDependabot(":instrumentation:logback:logback-mdc-1.0:javaagent") +hideFromDependabot(":instrumentation:logback:logback-mdc-1.0:library") +hideFromDependabot(":instrumentation:logback:logback-mdc-1.0:testing") +hideFromDependabot(":instrumentation:methods:javaagent") +hideFromDependabot(":instrumentation:micrometer:micrometer-1.5:javaagent") +hideFromDependabot(":instrumentation:micrometer:micrometer-1.5:library") +hideFromDependabot(":instrumentation:micrometer:micrometer-1.5:testing") +hideFromDependabot(":instrumentation:mongo:mongo-3.1:javaagent") +hideFromDependabot(":instrumentation:mongo:mongo-3.1:library") +hideFromDependabot(":instrumentation:mongo:mongo-3.1:testing") +hideFromDependabot(":instrumentation:mongo:mongo-3.7:javaagent") +hideFromDependabot(":instrumentation:mongo:mongo-4.0:javaagent") +hideFromDependabot(":instrumentation:mongo:mongo-async-3.3:javaagent") +hideFromDependabot(":instrumentation:mongo:mongo-common:testing") +hideFromDependabot(":instrumentation:netty:netty-3.8:javaagent") +hideFromDependabot(":instrumentation:netty:netty-4.0:javaagent") +hideFromDependabot(":instrumentation:netty:netty-4.1:javaagent") +hideFromDependabot(":instrumentation:netty:netty-4.1:library") +hideFromDependabot(":instrumentation:netty:netty-4.1:testing") +hideFromDependabot(":instrumentation:netty:netty-4-common:javaagent") +hideFromDependabot(":instrumentation:netty:netty-4-common:library") +hideFromDependabot(":instrumentation:netty:netty-common:library") +hideFromDependabot(":instrumentation:okhttp:okhttp-2.2:javaagent") +hideFromDependabot(":instrumentation:okhttp:okhttp-3.0:javaagent") +hideFromDependabot(":instrumentation:okhttp:okhttp-3.0:library") +hideFromDependabot(":instrumentation:okhttp:okhttp-3.0:testing") +hideFromDependabot(":instrumentation:opentelemetry-api:opentelemetry-api-1.0:javaagent") +hideFromDependabot(":instrumentation:opentelemetry-api:opentelemetry-api-1.4:javaagent") +hideFromDependabot(":instrumentation:opentelemetry-api:opentelemetry-api-1.10:javaagent") +hideFromDependabot(":instrumentation:opentelemetry-api:opentelemetry-api-logs-1.19:javaagent") +hideFromDependabot(":instrumentation:opentelemetry-extension-annotations-1.0:javaagent") +hideFromDependabot(":instrumentation:opentelemetry-instrumentation-annotations-1.16:javaagent") +hideFromDependabot(":instrumentation:opentelemetry-instrumentation-api:javaagent") +hideFromDependabot(":instrumentation:opentelemetry-instrumentation-api:testing") +hideFromDependabot(":instrumentation:oracle-ucp-11.2:javaagent") +hideFromDependabot(":instrumentation:oracle-ucp-11.2:library") +hideFromDependabot(":instrumentation:oracle-ucp-11.2:testing") +hideFromDependabot(":instrumentation:oshi:javaagent") +hideFromDependabot(":instrumentation:oshi:library") +hideFromDependabot(":instrumentation:oshi:testing") +hideFromDependabot(":instrumentation:play:play-mvc:play-mvc-2.4:javaagent") +hideFromDependabot(":instrumentation:play:play-mvc:play-mvc-2.6:javaagent") +hideFromDependabot(":instrumentation:play:play-ws:play-ws-1.0:javaagent") +hideFromDependabot(":instrumentation:play:play-ws:play-ws-2.0:javaagent") +hideFromDependabot(":instrumentation:play:play-ws:play-ws-2.1:javaagent") +hideFromDependabot(":instrumentation:play:play-ws:play-ws-common:javaagent") +hideFromDependabot(":instrumentation:play:play-ws:play-ws-common:testing") +hideFromDependabot(":instrumentation:quartz-2.0:javaagent") +hideFromDependabot(":instrumentation:quartz-2.0:library") +hideFromDependabot(":instrumentation:quartz-2.0:testing") +hideFromDependabot(":instrumentation:rabbitmq-2.7:javaagent") +hideFromDependabot(":instrumentation:ratpack:ratpack-1.4:javaagent") +hideFromDependabot(":instrumentation:ratpack:ratpack-1.4:testing") +hideFromDependabot(":instrumentation:ratpack:ratpack-1.7:library") +hideFromDependabot(":instrumentation:reactor:reactor-3.1:javaagent") +hideFromDependabot(":instrumentation:reactor:reactor-3.1:library") +hideFromDependabot(":instrumentation:reactor:reactor-3.1:testing") +hideFromDependabot(":instrumentation:reactor:reactor-netty:reactor-netty-0.9:javaagent") +hideFromDependabot(":instrumentation:reactor:reactor-netty:reactor-netty-1.0:javaagent") +hideFromDependabot(":instrumentation:reactor:reactor-netty:reactor-netty-1.0:javaagent-unit-tests") +hideFromDependabot(":instrumentation:rediscala-1.8:javaagent") +hideFromDependabot(":instrumentation:redisson:redisson-3.0:javaagent") +hideFromDependabot(":instrumentation:redisson:redisson-3.17:javaagent") +hideFromDependabot(":instrumentation:redisson:redisson-common:javaagent") +hideFromDependabot(":instrumentation:redisson:redisson-common:testing") +hideFromDependabot(":instrumentation:resources:library") +hideFromDependabot(":instrumentation:restlet:restlet-1.1:javaagent") +hideFromDependabot(":instrumentation:restlet:restlet-1.1:library") +hideFromDependabot(":instrumentation:restlet:restlet-1.1:testing") +hideFromDependabot(":instrumentation:restlet:restlet-2.0:javaagent") +hideFromDependabot(":instrumentation:restlet:restlet-2.0:library") +hideFromDependabot(":instrumentation:restlet:restlet-2.0:testing") +hideFromDependabot(":instrumentation:rmi:bootstrap") +hideFromDependabot(":instrumentation:rmi:javaagent") +hideFromDependabot(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-4.8:javaagent") +hideFromDependabot(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-4.8:library") +hideFromDependabot(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-4.8:testing") +hideFromDependabot(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-5.0:javaagent") +hideFromDependabot(":instrumentation:rocketmq:rocketmq-client:rocketmq-client-5.0:testing") +hideFromDependabot(":instrumentation:runtime-metrics:javaagent") +hideFromDependabot(":instrumentation:runtime-metrics:library") +hideFromDependabot(":instrumentation:rxjava:rxjava-1.0:library") +hideFromDependabot(":instrumentation:rxjava:rxjava-2.0:library") +hideFromDependabot(":instrumentation:rxjava:rxjava-2.0:testing") +hideFromDependabot(":instrumentation:rxjava:rxjava-2.0:javaagent") +hideFromDependabot(":instrumentation:rxjava:rxjava-3.0:library") +hideFromDependabot(":instrumentation:rxjava:rxjava-3.0:javaagent") +hideFromDependabot(":instrumentation:rxjava:rxjava-3.1.1:library") +hideFromDependabot(":instrumentation:rxjava:rxjava-3.1.1:javaagent") +hideFromDependabot(":instrumentation:rxjava:rxjava-3-common:library") +hideFromDependabot(":instrumentation:rxjava:rxjava-3-common:testing") +hideFromDependabot(":instrumentation:scala-fork-join-2.8:javaagent") +hideFromDependabot(":instrumentation:servlet:servlet-common:bootstrap") +hideFromDependabot(":instrumentation:servlet:servlet-common:javaagent") +hideFromDependabot(":instrumentation:servlet:servlet-javax-common:javaagent") +hideFromDependabot(":instrumentation:servlet:servlet-2.2:javaagent") +hideFromDependabot(":instrumentation:servlet:servlet-3.0:javaagent") +hideFromDependabot(":instrumentation:servlet:servlet-5.0:javaagent") +hideFromDependabot(":instrumentation:spark-2.3:javaagent") +hideFromDependabot(":instrumentation:spring:spring-batch-3.0:javaagent") +hideFromDependabot(":instrumentation:spring:spring-boot-actuator-autoconfigure-2.0:javaagent") +hideFromDependabot(":instrumentation:spring:spring-boot-resources:library") +hideFromDependabot(":instrumentation:spring:spring-core-2.0:javaagent") +hideFromDependabot(":instrumentation:spring:spring-data-1.8:javaagent") +hideFromDependabot(":instrumentation:spring:spring-integration-4.1:javaagent") +hideFromDependabot(":instrumentation:spring:spring-integration-4.1:library") +hideFromDependabot(":instrumentation:spring:spring-integration-4.1:testing") +hideFromDependabot(":instrumentation:spring:spring-jms-2.0:javaagent") +hideFromDependabot(":instrumentation:spring:spring-kafka-2.7:javaagent") +hideFromDependabot(":instrumentation:spring:spring-kafka-2.7:library") +hideFromDependabot(":instrumentation:spring:spring-kafka-2.7:testing") +hideFromDependabot(":instrumentation:spring:spring-rabbit-1.0:javaagent") +hideFromDependabot(":instrumentation:spring:spring-rmi-4.0:javaagent") +hideFromDependabot(":instrumentation:spring:spring-scheduling-3.1:javaagent") +hideFromDependabot(":instrumentation:spring:spring-web-3.1:javaagent") +hideFromDependabot(":instrumentation:spring:spring-web-3.1:library") +hideFromDependabot(":instrumentation:spring:spring-web-3.1:testing") +hideFromDependabot(":instrumentation:spring:spring-webmvc-3.1:javaagent") +hideFromDependabot(":instrumentation:spring:spring-webmvc-3.1:wildfly-testing") +hideFromDependabot(":instrumentation:spring:spring-webmvc-5.3:library") +hideFromDependabot(":instrumentation:spring:spring-webflux-5.0:javaagent") +hideFromDependabot(":instrumentation:spring:spring-webflux-5.0:library") +hideFromDependabot(":instrumentation:spring:spring-ws-2.0:javaagent") +hideFromDependabot(":instrumentation:spring:spring-boot-autoconfigure") +hideFromDependabot(":instrumentation:spring:starters:spring-boot-starter") +hideFromDependabot(":instrumentation:spring:starters:jaeger-spring-boot-starter") +hideFromDependabot(":instrumentation:spring:starters:zipkin-spring-boot-starter") +hideFromDependabot(":instrumentation:spymemcached-2.12:javaagent") +hideFromDependabot(":instrumentation:struts-2.3:javaagent") +hideFromDependabot(":instrumentation:tapestry-5.4:javaagent") +hideFromDependabot(":instrumentation:tomcat:tomcat-7.0:javaagent") +hideFromDependabot(":instrumentation:tomcat:tomcat-10.0:javaagent") +hideFromDependabot(":instrumentation:tomcat:tomcat-common:javaagent") +hideFromDependabot(":instrumentation:tomcat:tomcat-jdbc") +hideFromDependabot(":instrumentation:twilio-6.6:javaagent") +hideFromDependabot(":instrumentation:undertow-1.4:bootstrap") +hideFromDependabot(":instrumentation:undertow-1.4:javaagent") +hideFromDependabot(":instrumentation:vaadin-14.2:javaagent") +hideFromDependabot(":instrumentation:vaadin-14.2:testing") +hideFromDependabot(":instrumentation:vertx:vertx-http-client:vertx-http-client-3.0:javaagent") +hideFromDependabot(":instrumentation:vertx:vertx-http-client:vertx-http-client-4.0:javaagent") +hideFromDependabot(":instrumentation:vertx:vertx-http-client:vertx-http-client-common:javaagent") +hideFromDependabot(":instrumentation:vertx:vertx-kafka-client-3.6:javaagent") +hideFromDependabot(":instrumentation:vertx:vertx-kafka-client-3.6:testing") +hideFromDependabot(":instrumentation:vertx:vertx-rx-java-3.5:javaagent") +hideFromDependabot(":instrumentation:vertx:vertx-web-3.0:javaagent") +hideFromDependabot(":instrumentation:vertx:vertx-web-3.0:testing") +hideFromDependabot(":instrumentation:vibur-dbcp-11.0:javaagent") +hideFromDependabot(":instrumentation:vibur-dbcp-11.0:library") +hideFromDependabot(":instrumentation:vibur-dbcp-11.0:testing") +hideFromDependabot(":instrumentation:wicket-8.0:javaagent") // benchmark include(":benchmark-overhead-jmh") include(":benchmark-jfr-analyzer") + +// this effectively hides the submodule from dependabot because dependabot only regex parses gradle +// files looking for certain patterns +fun hideFromDependabot(projectPath: String) { + include(projectPath) +}