diff --git a/tck/README.adoc b/tck/README.adoc
index 6ce04030..e791f678 100644
--- a/tck/README.adoc
+++ b/tck/README.adoc
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2022 Contributors to the Eclipse Foundation
+// Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
@@ -18,4 +18,141 @@
//
= MicroProfile Telemetry TCK
-This module contains TCKs for Logs, Metrics and Tracing.
\ No newline at end of file
+
+Any MicroProfile Telemetry implementation must pass this test suite.
+The TCK uses `TestNG` and `Arquillian`.
+
+== Foo
+
+=== Hardware Requirements
+All systems should meet the following recommended hardware requirements:
+
+* CPU running at 2.0 GHz or higher
+* 4 GB of RAM or more
+* Network access to the Internet
+
+=== Software Requirements
+You can run this TCK on platforms running the Solaris, Linux, Windows, and Mac OS with the following software installed:
+
+* Maven
+* JDK11+
+
+=== Dependencies
+To enable the tests in your project you need to add the following dependency to your build:
+
+[source, xml]
+----
+
+ org.eclipse.microprofile.telemetry
+ microprofile-telemetry-tck
+ 2.1-SNAPSHOT
+ test
+
+----
+
+To run the all the tests, place this in the `tck-suite.xml`. E.g.
+
+[source, xml]
+----
+
+
+
+
+
+
+
+
+
+----
+
+=== Runtime Initialization Tests
+
+All the tests in the TCK are configured to run correctly out of the box. However, if you need to override any of the configuration properties, you may do so by setting a system property or environment variable (e.g. `otel.metric.export.interval=3000/OTEL_METRIC_EXPORT_INTERVAL=3000`).
+
+=== Logging File Configuration
+Parts of the OpenTelemetry TCK expect information that is sent to stdout in the tests. Ensure logs written to stdout are captured in a file and set the system property `mptelemetry.tck.log.file.path` to the file containing the log output when running the logs TCK. For example:
+
+[source, properties]
+----
+mptelemetry.tck.log.file.path=console.log
+----
+
+=== Configuration in Apache Maven pom.xml
+If you use Apache Maven then the tests are run via the `maven-surefire-plugin`
+
+[source, xml]
+----
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ 2.22.2
+
+
+ tck-suite.xml
+
+
+
+
+
+----
+
+=== Running as a Scanned Dependency
+You can also run the TCK as a scanned dependency.
+
+==== Surefire Configuration in your pom.xml
+Once you've added the dependency, you don't need a `tck-suite.xml` you can just scan the dependency for tests.
+
+[source, xml]
+----
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ 2.22.2
+
+
+ org.eclipse.microprofile.telemetry:microprofile-telemetry-tck
+
+
+
+
+
+----
+
+=== Declaring the Tests to run
+There is a group of optional tests. This includes:
+
+* `optional-tests`: `B3` and `Jaeger` progagation formats.
++
+These tests test the B3 and Jaeger propagation formats which are not required. If your implementation does not include support for these propagation formats, you should exclude the `optional-tests` group.
+
+Test groups can be excluded in the TestNG XML file. E.g. create a file `tck-suite.xml` in your project which contains the following content:
+
+[source, xml]
+----
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+----
+
+=== Providing an Executor [[Executor]]
+
+When the optional async tests are running, ensure that the classpath contains the following:
+
+- A class that implements the interface `java.util.concurrent.Executor` in whatever way is most appropriate for your server.
+- A file under META-INF/microprofile-telemetry-tck.properties. This file must contain a line `telemetry.tck.executor=.` referring to the previous class.
diff --git a/tck/logs/README.adoc b/tck/logs/README.adoc
deleted file mode 100644
index 304c8418..00000000
--- a/tck/logs/README.adoc
+++ /dev/null
@@ -1,135 +0,0 @@
-//
-// Copyright (c) 2024 Contributors to the Eclipse Foundation
-//
-// See the NOTICE file(s) distributed with this work for additional
-// information regarding copyright ownership.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-= MicroProfile Telemetry logs TCK
-Any MicroProfile Telemetry implementation must pass this test suite.
-The TCK uses `TestNG` and `Arquillian`.
-
-== Hardware Requirements
-All systems should meet the following recommended hardware requirements:
-
- * CPU running at 2.0 GHz or higher
- * 4 GB of RAM or more
- * Network access to the Internet
-
-== Software Requirements
-You can run this TCK on platforms running the Solaris, Linux, Windows, and Mac OS with the following software installed:
-
- * Maven
- * JDK11+
-
-== Dependencies
-To enable the tests in your project you need to add the following dependency to your build:
-
-[source, xml]
-----
-
-
- org.eclipse.microprofile.telemetry
- microprofile-telemetry-logs-tck
- 1.0
- test
-
-
-----
-
-If you want to run the logs tests, you can specify the application logging tests in the `tck-suite.xml`. E.g.
-
-[source, xml]
-----
-
-
-
-
-
-
-
-
-
-----
-
-== Runtime Initialization Tests
-
-To test that the OpenTelemetry instance is set properly at runtime initialization, configure the runtime with `otel.sdk.disabled=false`/`OTEL_SDK_DISABLED=FALSE` as a system property or environment variable. With the properly configured runtime, include the required test in the `tck-suite.xml`:
-
-[source, xml]
-----
-
-
-
-
-
-
-
-
-
-----
-
-== Logging File Configuration
-OpenTelemetry logs are sent to stdout in the tests. Ensure logs written to stdout are captured in a file and set the system property `log.file.path` to the file containing the log output when running the logs TCK. For example:
-
-[source, xml]
-----
-mptelemetry.tck.log.file.path=console.log
-----
-
-== Configuration in Apache Maven pom.xml
-If you use Apache Maven then the tests are run via the `maven-surefire-plugin`
-
-[source, xml]
-----
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 2.22.2
-
-
- tck-suite.xml
-
-
-
-
-
-----
-
-== Running as a Scanned Dependency
-You can also run the TCK as a scanned dependency.
-
-=== Surefire Configuration in your pom.xml
-Once you've added the dependency, you don't need a `tck-suite.xml` you can just scan the dependency for tests.
-
-[source, xml]
-----
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 2.22.2
-
-
- org.eclipse.microprofile.telemetry:microprofile-telemetry-logs-tck
-
-
-
-
-
-----
diff --git a/tck/logs/pom.xml b/tck/logs/pom.xml
deleted file mode 100644
index 2b044639..00000000
--- a/tck/logs/pom.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
- 4.0.0
-
-
- org.eclipse.microprofile.telemetry
- microprofile-telemetry-tck-parent
- 2.1-SNAPSHOT
-
-
- microprofile-telemetry-logs-tck
- MicroProfile Telemetry logs TCK
-
-
-
- org.eclipse.microprofile.config
- microprofile-config-api
-
-
- org.eclipse.microprofile.rest.client
- microprofile-rest-client-api
-
-
- jakarta.enterprise
- jakarta.enterprise.cdi-api
-
-
- jakarta.ws.rs
- jakarta.ws.rs-api
-
-
- io.opentelemetry
- opentelemetry-sdk
-
-
- org.testng
- testng
-
-
- org.jboss.arquillian.testng
- arquillian-testng-container
-
-
- org.jboss.shrinkwrap
- shrinkwrap-api
-
-
- org.jboss.shrinkwrap.resolver
- shrinkwrap-resolver-impl-maven
-
-
- org.jboss.shrinkwrap.resolver
- shrinkwrap-resolver-api-maven
-
-
- org.awaitility
- awaitility
- ${version.awaitility}
-
-
-
-
diff --git a/tck/metrics/README.adoc b/tck/metrics/README.adoc
deleted file mode 100644
index 4ee04659..00000000
--- a/tck/metrics/README.adoc
+++ /dev/null
@@ -1,135 +0,0 @@
-//
-// Copyright (c) 2022-2023 Contributors to the Eclipse Foundation
-//
-// See the NOTICE file(s) distributed with this work for additional
-// information regarding copyright ownership.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-= MicroProfile Telemetry Metrics TCK
-Any MicroProfile Telemetry implementation must pass this test suite.
-The TCK uses `TestNG` and `Arquillian`.
-
-== Hardware Requirements
-All systems should meet the following recommended hardware requirements:
-
- * CPU running at 2.0 GHz or higher
- * 4 GB of RAM or more
- * Network access to the Internet
-
-== Software Requirements
-You can run this TCK on platforms running the Solaris, Linux, Windows, and Mac OS with the following software installed:
-
- * Maven
- * JDK11+
-
-== Dependencies
-To enable the tests in your project you need to add the following dependency to your build:
-
-[source, xml]
-----
-
-
- org.eclipse.microprofile.telemetry
- microprofile-telemetry-metrics-tck
- 2.0
- test
-
-
-----
-
-== Running the tests
-
-The JVM metrics tests require runtime configuration to enable metric reading at a runtime level. The metrics must be sent to stdout in the tests. Ensure logs written to stdout are captured in a file and set the system property `mptelemetry.tck.log.file.path` to the file containing the log output when running the logs TCK. Configure the runtime with the following as system properties / environment variables:
-
- * `otel.sdk.disabled=false`/`OTEL_SDK_DISABLED=FALSE`
- * `otel.metrics.exporter=logging`/`OTEL_METRICS_EXPORTER=LOGGING`
- * `otel.traces.exporter=none`/`OTEL_TRACES_EXPORTER=none`
- * `otel.logs.exporter=none`/`OTEL_LOGS_EXPORTER=none`
- * `otel.metric.export.interval=3000`/`OTEL_METRIC_EXPORT_INTERVAL=3000`
-
-To run the JVM metrics tests, include the following content in the `tck-suite.xml` in your project:
-
-[source, xml]
-----
-
-
-
-
-
-
-
-
-
-----
-
-The remaining metrics tests must use an OpenTelemetry SDK instance that is configured by the configuration properties set in the application. Ensure that `otel.sdk.disabled` and `otel.metrics.exporter` are NOT set by the runtime. To run the application metrics tests, include the following content in the `tck-suite.xml` in your project:
-
-[source, xml]
-----
-
-
-
-
-
-
-
-
-
-----
-
-== Configuration in Apache Maven pom.xml
-If you use Apache Maven then the tests are run via the `maven-surefire-plugin`
-
-[source, xml]
-----
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 2.22.2
-
-
- tck-suite.xml
-
-
-
-
-
-----
-
-== Running as a Scanned Dependency
-You can also run the TCK as a scanned dependency.
-
-=== Surefire Configuration in your pom.xml
-Once you've added the dependency, you don't need a `tck-suite.xml` you can just scan the dependency for tests.
-
-[source, xml]
-----
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 2.22.2
-
-
- org.eclipse.microprofile.telemetry:microprofile-telemetry-metrics-tck
-
-
-
-
-
-----
diff --git a/tck/metrics/pom.xml b/tck/metrics/pom.xml
deleted file mode 100644
index 7e5a71db..00000000
--- a/tck/metrics/pom.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
- 4.0.0
-
-
- org.eclipse.microprofile.telemetry
- microprofile-telemetry-tck-parent
- 2.1-SNAPSHOT
-
-
- microprofile-telemetry-metrics-tck
- MicroProfile Telemetry Metrics TCK
-
-
-
- org.eclipse.microprofile.config
- microprofile-config-api
-
-
- org.eclipse.microprofile.rest.client
- microprofile-rest-client-api
-
-
- jakarta.enterprise
- jakarta.enterprise.cdi-api
-
-
- jakarta.ws.rs
- jakarta.ws.rs-api
-
-
- io.opentelemetry
- opentelemetry-sdk
-
-
- io.opentelemetry
- opentelemetry-sdk-common
-
-
- io.opentelemetry
- opentelemetry-sdk-extension-autoconfigure
-
-
- io.opentelemetry.instrumentation
- opentelemetry-instrumentation-annotations
-
-
- io.opentelemetry.semconv
- opentelemetry-semconv
-
-
- org.testng
- testng
-
-
- org.jboss.arquillian.testng
- arquillian-testng-container
-
-
- org.jboss.shrinkwrap
- shrinkwrap-api
-
-
- org.jboss.shrinkwrap.resolver
- shrinkwrap-resolver-impl-maven
-
-
- org.jboss.shrinkwrap.resolver
- shrinkwrap-resolver-api-maven
-
-
- org.awaitility
- awaitility
-
-
- commons-io
- commons-io
-
-
-
-
-
diff --git a/tck/metrics/src/main/resources/META-INF/LICENSE b/tck/metrics/src/main/resources/META-INF/LICENSE
deleted file mode 100644
index 8dada3ed..00000000
--- a/tck/metrics/src/main/resources/META-INF/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "{}"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright {yyyy} {name of copyright owner}
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
diff --git a/tck/metrics/src/main/resources/META-INF/NOTICE b/tck/metrics/src/main/resources/META-INF/NOTICE
deleted file mode 100644
index b5b6dc89..00000000
--- a/tck/metrics/src/main/resources/META-INF/NOTICE
+++ /dev/null
@@ -1,19 +0,0 @@
-=========================================================================
-== NOTICE file corresponding to section 4(d) of the Apache License, ==
-== Version 2.0, in this case for MicroProfile Telemetry ==
-=========================================================================
-
-SPDXVersion: SPDX-2.1
-PackageName: MicroProfile
-PackageHomePage: http://www.eclipse.org/microprofile
-PackageLicenseDeclared: Apache-2.0
-
-PackageCopyrightText:
-Roberto Cortez,
-Emily Jiang,
-Bruno Baptista,
-Jan Westerkamp,
-Felix Wong,
-Yasmin Aumeeruddy,
-Patrik Duditš
-
\ No newline at end of file
diff --git a/tck/metrics/src/main/resources/META-INF/tck b/tck/metrics/src/main/resources/META-INF/tck
deleted file mode 100644
index e69de29b..00000000
diff --git a/tck/pom.xml b/tck/pom.xml
index 4a60775e..3828f759 100644
--- a/tck/pom.xml
+++ b/tck/pom.xml
@@ -21,17 +21,9 @@
microprofile-telemetry-parent
2.1-SNAPSHOT
-
- microprofile-telemetry-tck-parent
- 2.1-SNAPSHOT
- pom
- MicroProfile Telemetry TCK
-
- tracing
- metrics
- logs
-
+ microprofile-telemetry-tck
+ MicroProfile Telemetry TCK
@@ -67,4 +59,68 @@
+
+
+
+ org.eclipse.microprofile.config
+ microprofile-config-api
+
+
+ org.eclipse.microprofile.rest.client
+ microprofile-rest-client-api
+
+
+ jakarta.enterprise
+ jakarta.enterprise.cdi-api
+
+
+ jakarta.ws.rs
+ jakarta.ws.rs-api
+
+
+ io.opentelemetry
+ opentelemetry-sdk
+
+
+ io.opentelemetry
+ opentelemetry-sdk-common
+
+
+ io.opentelemetry
+ opentelemetry-sdk-extension-autoconfigure
+
+
+ io.opentelemetry.instrumentation
+ opentelemetry-instrumentation-annotations
+
+
+ io.opentelemetry.semconv
+ opentelemetry-semconv
+
+
+ org.testng
+ testng
+
+
+ org.jboss.arquillian.testng
+ arquillian-testng-container
+
+
+ org.jboss.shrinkwrap
+ shrinkwrap-api
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-impl-maven
+
+
+ org.jboss.shrinkwrap.resolver
+ shrinkwrap-resolver-api-maven
+
+
+ org.awaitility
+ awaitility
+
+
+
diff --git a/tck/logs/src/main/java/org/eclipse/microprofile/telemetry/logs/tck/application/JulTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/logs/tck/application/JulTest.java
similarity index 100%
rename from tck/logs/src/main/java/org/eclipse/microprofile/telemetry/logs/tck/application/JulTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/logs/tck/application/JulTest.java
diff --git a/tck/logs/src/main/java/org/eclipse/microprofile/telemetry/logs/tck/config/ServerInstanceTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/logs/tck/config/ServerInstanceTest.java
similarity index 100%
rename from tck/logs/src/main/java/org/eclipse/microprofile/telemetry/logs/tck/config/ServerInstanceTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/logs/tck/config/ServerInstanceTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/BasicHttpClient.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/BasicHttpClient.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/BasicHttpClient.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/BasicHttpClient.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/ConfigAsset.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/ConfigAsset.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/ConfigAsset.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/ConfigAsset.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/TestLibraries.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/TestLibraries.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/TestLibraries.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/TestLibraries.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/TestUtils.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/TestUtils.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/TestUtils.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/TestUtils.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/AsyncDoubleCounterTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/AsyncDoubleCounterTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/AsyncDoubleCounterTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/AsyncDoubleCounterTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/AsyncLongCounterTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/AsyncLongCounterTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/AsyncLongCounterTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/AsyncLongCounterTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleCounterTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleCounterTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleCounterTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleCounterTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleGaugeTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleGaugeTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleGaugeTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleGaugeTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleHistogramTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleHistogramTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleHistogramTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleHistogramTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleUpDownCounterTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleUpDownCounterTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleUpDownCounterTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/DoubleUpDownCounterTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongCounterTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongCounterTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongCounterTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongCounterTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongGaugeTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongGaugeTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongGaugeTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongGaugeTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongHistogramTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongHistogramTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongHistogramTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongHistogramTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongUpDownCounterTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongUpDownCounterTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongUpDownCounterTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/cdi/LongUpDownCounterTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/exporter/InMemoryMetricExporter.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/exporter/InMemoryMetricExporter.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/exporter/InMemoryMetricExporter.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/exporter/InMemoryMetricExporter.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/exporter/InMemoryMetricExporterProvider.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/exporter/InMemoryMetricExporterProvider.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/exporter/InMemoryMetricExporterProvider.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/exporter/InMemoryMetricExporterProvider.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/http/HttpHistogramTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/http/HttpHistogramTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/http/HttpHistogramTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/application/http/HttpHistogramTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmClassesTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmClassesTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmClassesTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmClassesTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmCpuTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmCpuTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmCpuTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmCpuTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmGarbageCollectionTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmGarbageCollectionTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmGarbageCollectionTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmGarbageCollectionTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmMemoryTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmMemoryTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmMemoryTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmMemoryTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmThreadTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmThreadTest.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmThreadTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/JvmThreadTest.java
diff --git a/tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/MetricsReader.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/MetricsReader.java
similarity index 100%
rename from tck/metrics/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/MetricsReader.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/metrics/tck/jvm/MetricsReader.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/BasicHttpClient.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/BasicHttpClient.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/BasicHttpClient.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/BasicHttpClient.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/ConfigAsset.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/ConfigAsset.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/ConfigAsset.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/ConfigAsset.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/TestApplication.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/TestApplication.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/TestApplication.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/TestApplication.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/TestLibraries.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/TestLibraries.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/TestLibraries.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/TestLibraries.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsClientAsyncTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsClientAsyncTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsClientAsyncTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsClientAsyncTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsClientAsyncTestEndpoint.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsClientAsyncTestEndpoint.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsClientAsyncTestEndpoint.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsClientAsyncTestEndpoint.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTestEndpoint.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTestEndpoint.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTestEndpoint.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTestEndpoint.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTestEndpointClient.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTestEndpointClient.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTestEndpointClient.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/JaxRsServerAsyncTestEndpointClient.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/MpRestClientAsyncTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/MpRestClientAsyncTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/MpRestClientAsyncTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/MpRestClientAsyncTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/MpRestClientAsyncTestEndpoint.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/MpRestClientAsyncTestEndpoint.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/MpRestClientAsyncTestEndpoint.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/async/MpRestClientAsyncTestEndpoint.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/BaggageBeanTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/BaggageBeanTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/BaggageBeanTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/BaggageBeanTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/OpenTelemetryBeanTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/OpenTelemetryBeanTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/OpenTelemetryBeanTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/OpenTelemetryBeanTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/SpanBeanTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/SpanBeanTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/SpanBeanTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/SpanBeanTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/TracerTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/TracerTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/TracerTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/cdi/TracerTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/exporter/InMemorySpanExporter.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/exporter/InMemorySpanExporter.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/exporter/InMemorySpanExporter.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/exporter/InMemorySpanExporter.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/exporter/InMemorySpanExporterProvider.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/exporter/InMemorySpanExporterProvider.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/exporter/InMemorySpanExporterProvider.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/exporter/InMemorySpanExporterProvider.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/PropertiesBasedConfigurationBuilder.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/PropertiesBasedConfigurationBuilder.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/PropertiesBasedConfigurationBuilder.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/PropertiesBasedConfigurationBuilder.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/api/Configuration.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/api/Configuration.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/api/Configuration.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/api/Configuration.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/api/ConfigurationAccessor.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/api/ConfigurationAccessor.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/api/ConfigurationAccessor.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/porting/api/ConfigurationAccessor.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/B3MultiPropagationTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/B3MultiPropagationTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/B3MultiPropagationTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/B3MultiPropagationTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/B3PropagationTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/B3PropagationTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/B3PropagationTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/B3PropagationTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/BaggageTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/BaggageTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/BaggageTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/BaggageTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/JaegerPropagationTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/JaegerPropagationTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/JaegerPropagationTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/JaegerPropagationTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/PropagationHelper.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/PropagationHelper.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/PropagationHelper.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/PropagationHelper.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/PropagatorSpiTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/PropagatorSpiTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/PropagatorSpiTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/PropagatorSpiTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanDefaultTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanDefaultTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanDefaultTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanDefaultTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanDisabledTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanDisabledTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanDisabledTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanDisabledTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestClientSpanTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanDefaultTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanDefaultTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanDefaultTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanDefaultTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanDisabledTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanDisabledTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanDisabledTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanDisabledTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/RestSpanTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/TestPropagator.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/TestPropagator.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/TestPropagator.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/TestPropagator.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/TestPropagatorProvider.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/TestPropagatorProvider.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/TestPropagatorProvider.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/TestPropagatorProvider.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/W3BaggagePropagationTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/W3BaggagePropagationTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/W3BaggagePropagationTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/W3BaggagePropagationTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/W3PropagationTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/W3PropagationTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/W3PropagationTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/rest/W3PropagationTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/CustomizerSpiTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/CustomizerSpiTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/CustomizerSpiTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/CustomizerSpiTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/ExporterSpiTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/ExporterSpiTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/ExporterSpiTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/ExporterSpiTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/ResourceSpiTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/ResourceSpiTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/ResourceSpiTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/ResourceSpiTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/SamplerSpiTest.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/SamplerSpiTest.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/SamplerSpiTest.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/SamplerSpiTest.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestCustomizer.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestCustomizer.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestCustomizer.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestCustomizer.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestResourceProvider.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestResourceProvider.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestResourceProvider.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestResourceProvider.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestSampler.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestSampler.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestSampler.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestSampler.java
diff --git a/tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestSamplerProvider.java b/tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestSamplerProvider.java
similarity index 100%
rename from tck/tracing/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestSamplerProvider.java
rename to tck/src/main/java/org/eclipse/microprofile/telemetry/tracing/tck/spi/TestSamplerProvider.java
diff --git a/tck/logs/src/main/resources/META-INF/LICENSE b/tck/src/main/resources/META-INF/LICENSE
similarity index 100%
rename from tck/logs/src/main/resources/META-INF/LICENSE
rename to tck/src/main/resources/META-INF/LICENSE
diff --git a/tck/logs/src/main/resources/META-INF/NOTICE b/tck/src/main/resources/META-INF/NOTICE
similarity index 100%
rename from tck/logs/src/main/resources/META-INF/NOTICE
rename to tck/src/main/resources/META-INF/NOTICE
diff --git a/tck/logs/src/main/resources/META-INF/tck b/tck/src/main/resources/META-INF/tck
similarity index 100%
rename from tck/logs/src/main/resources/META-INF/tck
rename to tck/src/main/resources/META-INF/tck
diff --git a/tck/tracing/README.adoc b/tck/tracing/README.adoc
deleted file mode 100644
index f5663c38..00000000
--- a/tck/tracing/README.adoc
+++ /dev/null
@@ -1,145 +0,0 @@
-//
-// Copyright (c) 2022-2023 Contributors to the Eclipse Foundation
-//
-// See the NOTICE file(s) distributed with this work for additional
-// information regarding copyright ownership.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-= MicroProfile Telemetry Tracing TCK
-Any MicroProfile Telemetry implementation must pass this test suite.
-The TCK uses `TestNG` and `Arquillian`.
-
-== Hardware Requirements
-All systems should meet the following recommended hardware requirements:
-
- * CPU running at 2.0 GHz or higher
- * 4 GB of RAM or more
- * Network access to the Internet
-
-== Software Requirements
-You can run this TCK on platforms running the Solaris, Linux, Windows, and Mac OS with the following software installed:
-
- * Maven
- * JDK11+
-
-== Dependencies
-To enable the tests in your project you need to add the following dependency to your build:
-
-[source, xml]
-----
-
-
- org.eclipse.microprofile.telemetry
- microprofile-telemetry-tracing-tck
- 1.0
- test
-
-
-----
-
-== Declaring the Tests to run
-There is a group of optional tests. This includes:
-
-* `optional-tests`: `B3` and `Jaeger` progagation formats.
-+
-These tests test the B3 and Jaeger propagation formats which are not required. If your implementation does not include support for these propagation formats, you should exclude the `optional-tests` group.
-
-Test groups can be excluded in the TestNG XML file. E.g. create a file `tck-suite.xml` in your project which contains the following content:
-
-[source, xml]
-----
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-----
-
-If you want to run the optional tests, you can specify all tests in the `tck-suite.xml`. E.g.
-
-[source, xml]
-----
-
-
-
-
-
-
-
-
-
-----
-
-== Configuration in Apache Maven pom.xml
-If you use Apache Maven then the tests are run via the `maven-surefire-plugin`
-
-[source, xml]
-----
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 2.22.2
-
-
- tck-suite.xml
-
-
-
-
-
-----
-
-== Providing an Executor [[Executor]]
-
-When the tests are running, ensure that the classpath contains the following:
-
-- A class that implements the interface `java.util.concurrent.Executor` in whatever way is most appropriate for your server.
-- A file under META-INF/microprofile-telemetry-tck.properties. This file must contain a line `telemetry.tck.executor=.` referring to the previous class.
-
-== Running as a Scanned Dependency
-You can also run the TCK as a scanned dependency.
-
-=== Surefire Configuration in your pom.xml
-Once you've added the dependency, you don't need a `tck-suite.xml` you can just scan the dependency for tests.
-
-[source, xml]
-----
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 2.22.2
-
-
- org.eclipse.microprofile.telemetry:microprofile-telemetry-tracing-tck
-
-
-
-
-
-----
diff --git a/tck/tracing/pom.xml b/tck/tracing/pom.xml
deleted file mode 100644
index 13b40673..00000000
--- a/tck/tracing/pom.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
- 4.0.0
-
-
- org.eclipse.microprofile.telemetry
- microprofile-telemetry-tck-parent
- 2.1-SNAPSHOT
-
-
- microprofile-telemetry-tracing-tck
- MicroProfile Telemetry Tracing TCK
-
-
-
- org.eclipse.microprofile.config
- microprofile-config-api
-
-
- org.eclipse.microprofile.rest.client
- microprofile-rest-client-api
-
-
- jakarta.enterprise
- jakarta.enterprise.cdi-api
-
-
- jakarta.ws.rs
- jakarta.ws.rs-api
-
-
- io.opentelemetry
- opentelemetry-sdk
-
-
- io.opentelemetry
- opentelemetry-sdk-extension-autoconfigure
-
-
- io.opentelemetry.instrumentation
- opentelemetry-instrumentation-annotations
-
-
- io.opentelemetry.semconv
- opentelemetry-semconv
-
-
- org.testng
- testng
-
-
- org.jboss.arquillian.testng
- arquillian-testng-container
-
-
- org.jboss.shrinkwrap
- shrinkwrap-api
-
-
- org.jboss.shrinkwrap.resolver
- shrinkwrap-resolver-impl-maven
-
-
- org.jboss.shrinkwrap.resolver
- shrinkwrap-resolver-api-maven
-
-
- org.awaitility
- awaitility
-
-
-
-
-
diff --git a/tck/tracing/src/main/resources/META-INF/LICENSE b/tck/tracing/src/main/resources/META-INF/LICENSE
deleted file mode 100644
index 8dada3ed..00000000
--- a/tck/tracing/src/main/resources/META-INF/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "{}"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright {yyyy} {name of copyright owner}
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
diff --git a/tck/tracing/src/main/resources/META-INF/NOTICE b/tck/tracing/src/main/resources/META-INF/NOTICE
deleted file mode 100644
index b5b6dc89..00000000
--- a/tck/tracing/src/main/resources/META-INF/NOTICE
+++ /dev/null
@@ -1,19 +0,0 @@
-=========================================================================
-== NOTICE file corresponding to section 4(d) of the Apache License, ==
-== Version 2.0, in this case for MicroProfile Telemetry ==
-=========================================================================
-
-SPDXVersion: SPDX-2.1
-PackageName: MicroProfile
-PackageHomePage: http://www.eclipse.org/microprofile
-PackageLicenseDeclared: Apache-2.0
-
-PackageCopyrightText:
-Roberto Cortez,
-Emily Jiang,
-Bruno Baptista,
-Jan Westerkamp,
-Felix Wong,
-Yasmin Aumeeruddy,
-Patrik Duditš
-
\ No newline at end of file
diff --git a/tck/tracing/src/main/resources/META-INF/tck b/tck/tracing/src/main/resources/META-INF/tck
deleted file mode 100644
index e69de29b..00000000