mirror of https://github.com/dapr/java-sdk.git
update open telemetry lib version 0.7.1 (#380)
* update readme with secrets example link * Update opentelemetry to 0.7.1, change repo id for sping Co-authored-by: Artur Souza <artursouza.ms@outlook.com>
This commit is contained in:
parent
751ea2168c
commit
97eacf9598
|
|
@ -141,6 +141,7 @@ Try the following examples to learn more about Dapr's Java SDK:
|
|||
* [PubSub with subscriber over Http](./examples/src/main/java/io/dapr/examples/pubsub/http)
|
||||
* [Binding with input over Http](./examples/src/main/java/io/dapr/examples/bindings/http)
|
||||
* [Actors over Http](./examples/src/main/java/io/dapr/examples/actors/http)
|
||||
* [Secrets management](./examples/src/main/java/io/dapr/examples/secrets)
|
||||
* [Distributed tracing with OpenTelemetry SDK](./examples/src/main/java/io/dapr/examples/tracing)
|
||||
|
||||
#### API Documentation
|
||||
|
|
|
|||
|
|
@ -76,17 +76,17 @@
|
|||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-sdk</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.7.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-exporters-logging</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.7.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-exporters-zipkin</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.7.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.dapr</groupId>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>central</id>
|
||||
<id>spring</id>
|
||||
<name>libs-release</name>
|
||||
<url>https://repo.spring.io/libs-release</url>
|
||||
</repository>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>central</id>
|
||||
<id>spring</id>
|
||||
<name>libs-release</name>
|
||||
<url>https://repo.spring.io/libs-release</url>
|
||||
</repository>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>central</id>
|
||||
<id>spring</id>
|
||||
<name>libs-release</name>
|
||||
<url>https://repo.spring.io/libs-release</url>
|
||||
</repository>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>central</id>
|
||||
<id>spring</id>
|
||||
<name>libs-release</name>
|
||||
<url>https://repo.spring.io/libs-release</url>
|
||||
</repository>
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-api</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.7.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.opencensus</groupId>
|
||||
|
|
|
|||
Loading…
Reference in New Issue