forked from open-telemetry/opentelemetry-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Break out :exporters:common module (open-telemetry#4575)
* Break out :exporters:common module * Comment out readme links * spot
- Loading branch information
Showing
56 changed files
with
69 additions
and
29 deletions.
There are no files selected for viewing
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
2 changes: 2 additions & 0 deletions
2
docs/apidiffs/current_vs_latest/opentelemetry-exporter-common.txt
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,2 @@ | ||
Comparing source compatibility of against | ||
No changes. |
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,8 @@ | ||
# OpenTelemetry - Exporter Common | ||
|
||
<!-- TODO: uncomment once published | ||
[![Javadocs][javadoc-image]][javadoc-url] | ||
[javadoc-image]: https://www.javadoc.io/badge/io.opentelemetry/opentelemetry-exporter-common.svg | ||
[javadoc-url]: https://www.javadoc.io/doc/io.opentelemetry/opentelemetry-exporter-common | ||
--> |
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,39 @@ | ||
plugins { | ||
id("otel.java-conventions") | ||
id("otel.publish-conventions") | ||
|
||
id("otel.animalsniffer-conventions") | ||
} | ||
|
||
description = "OpenTelemetry Exporter Common" | ||
otelJava.moduleName.set("io.opentelemetry.exporter.internal") | ||
|
||
val versions: Map<String, String> by project | ||
dependencies { | ||
api(project(":api:all")) | ||
|
||
compileOnly(project(":sdk:common")) | ||
|
||
compileOnly("org.codehaus.mojo:animal-sniffer-annotations") | ||
|
||
annotationProcessor("com.google.auto.value:auto-value") | ||
|
||
// We include helpers shared by gRPC or okhttp exporters but do not want to impose these | ||
// dependency on all of our consumers. | ||
compileOnly("com.fasterxml.jackson.core:jackson-core") | ||
compileOnly("com.squareup.okhttp3:okhttp") | ||
compileOnly("io.grpc:grpc-netty") | ||
compileOnly("io.grpc:grpc-netty-shaded") | ||
compileOnly("io.grpc:grpc-okhttp") | ||
compileOnly("io.grpc:grpc-stub") | ||
|
||
testImplementation(project(":sdk:common")) | ||
|
||
testImplementation("com.google.protobuf:protobuf-java-util") | ||
testImplementation("com.squareup.okhttp3:okhttp") | ||
testImplementation("com.linecorp.armeria:armeria-junit5") | ||
testImplementation("org.skyscreamer:jsonassert") | ||
testImplementation("com.google.api.grpc:proto-google-common-protos") | ||
testImplementation("io.grpc:grpc-testing") | ||
testRuntimeOnly("io.grpc:grpc-netty-shaded") | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions
10
exporters/common/src/main/java/io/opentelemetry/exporter/internal/auth/package-info.java
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,10 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/** Utilities for exporter authentication. */ | ||
@ParametersAreNonnullByDefault | ||
package io.opentelemetry.exporter.internal.auth; | ||
|
||
import javax.annotation.ParametersAreNonnullByDefault; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
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