Skip to content

Commit

Permalink
rename the root project to match the current project name (#524)
Browse files Browse the repository at this point in the history
* rename the root project to match the current project name

* rename the root gradle file to be more standard.
  • Loading branch information
jkwatson authored Jun 16, 2020
1 parent 9877581 commit a59bb19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
File renamed without changes.
6 changes: 4 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ gradleEnterprise {
}
}

rootProject.name = 'trace-java'
rootProject.name = 'opentelemetry-java-instrumentation'

// agent projects
include ':java-agent'
Expand Down Expand Up @@ -171,7 +171,9 @@ def setBuildFile(project) {
}
}

setBuildFile(rootProject)
rootProject.children.each {
setBuildFile(it)
}

project(':agent-bootstrap').name = 'auto-bootstrap'
project(':agent-tooling').name = 'auto-tooling'
Expand Down

0 comments on commit a59bb19

Please sign in to comment.