settings.gradle.kts (42 lines of code) (raw):

pluginManagement { repositories { gradlePluginPortal() maven { name = "mavenCentralSnapshots" url = uri("https://oss.sonatype.org/content/repositories/snapshots") } } } rootProject.name = "elastic-otel-java" include("agent") include("agent:entrypoint") include("agentextension") include("bootstrap") include("custom") include("instrumentation") include("instrumentation:openai-client-instrumentation:instrumentation-1.1") include("inferred-spans") include("internal-logging") include("resources") include("runtime-attach") include("smoke-tests") include("smoke-tests:test-app") include("smoke-tests:test-app-war") include("testing:agent-for-testing") include("jvmti-access") include("common") include("testing-common") include("universal-profiling-integration") include("testing:integration-tests:inferred-spans-test") include("testing:integration-tests:agent-internals") include("testing:integration-tests:universal-profiling-test") dependencyResolutionManagement { versionCatalogs { create("catalog") { // the version catalog is currently limited to a single file due to dependabot // see https://github.com/dependabot/dependabot-core/issues/8079 for details. // Also, only the 'gradle/libs.versions.toml' path is supported for now. from(files("gradle/libs.versions.toml")) } } } plugins { id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0" //for resolving testing JVMs }