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:
parent
4d72f82df0
commit
26476ae086
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue