settings.gradle 427 B

12345678910111213141516171819
  1. pluginManagement {
  2. repositories {
  3. gradlePluginPortal()
  4. maven {
  5. name = "sonatype"
  6. url = uri("https://oss.sonatype.org/content/repositories/snapshots")
  7. }
  8. }
  9. }
  10. rootProject.name = 'opentelemetry-java-instrumentation-distro-demo'
  11. include "agent"
  12. include "bootstrap"
  13. include "custom"
  14. include "instrumentation"
  15. include "instrumentation:servlet-3"
  16. include "smoke-tests"
  17. include "testing:agent-for-testing"