Follow standard Gradle patterns for project folders / build files. (#40)

* Follow standard Gradle patterns for project folders / build files.

* git add

* Fix paths
This commit is contained in:
Anuraag Agrawal 2021-06-29 16:26:45 +09:00 committed by GitHub
parent 4d72f82df0
commit 26476ae086
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
57 changed files with 3 additions and 8 deletions

View File

@ -38,7 +38,7 @@ jobs:
if: always() if: always()
with: with:
name: test-results name: test-results
path: contrib/jmx-metrics/build/reports/tests/test path: jmx-metrics/build/reports/tests/test
integration-test: integration-test:
name: integration-test name: integration-test
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -66,4 +66,4 @@ jobs:
if: always() if: always()
with: with:
name: integration-test-results name: integration-test-results
path: contrib/jmx-metrics/build/reports/tests/test path: jmx-metrics/build/reports/tests/test

View File

@ -12,7 +12,7 @@ feature or via instrumentation, this project is hopefully for you.
## Provided Libraries ## Provided Libraries
* [JMX Metric Gatherer](./contrib/jmx-metrics/README.md) * [JMX Metric Gatherer](./jmx-metrics/README.md)
## Getting Started ## Getting Started

View File

@ -2,8 +2,3 @@ rootProject.name = 'opentelemetry-java-contrib'
include ':example' include ':example'
include ':jmx-metrics' include ':jmx-metrics'
rootProject.children.each {
it.projectDir = "${rootDir}/contrib/" + it.name as File
it.buildFileName = "${it.name}.gradle"
}