forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request wildfly#17999 from jasondlee/WFLY-19453
[WFLY-19453] Minimize size of Otel API module
- Loading branch information
Showing
10 changed files
with
98 additions
and
14 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
...src/main/resources/modules/system/layers/base/io/opentelemetry/api/events/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!-- | ||
~ Copyright The WildFly Authors | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<module xmlns="urn:jboss:module:1.9" name="io.opentelemetry.api.events"> | ||
<properties> | ||
<property name="jboss.api" value="private"/> | ||
</properties> | ||
|
||
<resources> | ||
<artifact name="${io.opentelemetry:opentelemetry-api-events}"/> | ||
</resources> | ||
|
||
<dependencies> | ||
<module name="io.opentelemetry.api"/> | ||
<module name="io.opentelemetry.context"/> | ||
</dependencies> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...s/modules/system/layers/base/io/opentelemetry/instrumentation/annotations/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!-- | ||
~ Copyright The WildFly Authors | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<module xmlns="urn:jboss:module:1.9" name="io.opentelemetry.instrumentation.annotations"> | ||
<properties> | ||
<property name="jboss.api" value="private"/> | ||
</properties> | ||
|
||
<resources> | ||
<artifact name="${io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations}"/> | ||
<artifact name="${io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations-support}"/> | ||
</resources> | ||
|
||
<dependencies> | ||
<module name="io.opentelemetry.api"/> | ||
<module name="io.opentelemetry.instrumentation.api"/> | ||
</dependencies> | ||
</module> |
24 changes: 24 additions & 0 deletions
24
...resources/modules/system/layers/base/io/opentelemetry/instrumentation/api/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!-- | ||
~ Copyright The WildFly Authors | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<module xmlns="urn:jboss:module:1.9" name="io.opentelemetry.instrumentation.api"> | ||
<properties> | ||
<property name="jboss.api" value="private"/> | ||
</properties> | ||
|
||
<resources> | ||
<artifact name="${io.opentelemetry.instrumentation:opentelemetry-instrumentation-api}"/> | ||
<artifact name="${io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv}"/> | ||
</resources> | ||
|
||
<dependencies> | ||
<module name="io.opentelemetry.api"/> | ||
<module name="io.opentelemetry.context"/> | ||
<module name="io.opentelemetry.semconv"/> | ||
<module name="io.smallrye.opentelemetry" services="import"/> | ||
|
||
<module name="java.logging"/> | ||
<module name="jakarta.interceptor.api" /> | ||
</dependencies> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...ed/src/main/resources/modules/system/layers/base/io/opentelemetry/semconv/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!-- | ||
~ Copyright The WildFly Authors | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<module xmlns="urn:jboss:module:1.9" name="io.opentelemetry.semconv"> | ||
<properties> | ||
<property name="jboss.api" value="private"/> | ||
</properties> | ||
|
||
<resources> | ||
<artifact name="${io.opentelemetry:opentelemetry-semconv}"/> | ||
</resources> | ||
|
||
<dependencies> | ||
<module name="io.opentelemetry.api"/> | ||
</dependencies> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters