Skip to content

Commit 2fd885b

Browse files
authored
chore: fix opencensus version in readme (#551)
we are using https://github.com/googleapis/java-shared-dependencies/blob/master/pom.xml#L73
1 parent 89c6936 commit 2fd885b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@ If you are using Maven, add this to your pom.xml file
176176
<dependency>
177177
<groupId>io.opencensus</groupId>
178178
<artifactId>opencensus-impl</artifactId>
179-
<version>0.26.0</version>
179+
<version>0.24.0</version>
180180
<scope>runtime</scope>
181181
</dependency>
182182
<dependency>
183183
<groupId>io.opencensus</groupId>
184184
<artifactId>opencensus-exporter-trace-stackdriver</artifactId>
185-
<version>0.26.0</version>
185+
<version>0.24.0</version>
186186
<exclusions>
187187
<exclusion>
188188
<groupId>io.grpc</groupId>
@@ -197,13 +197,13 @@ If you are using Maven, add this to your pom.xml file
197197
```
198198
If you are using Gradle, add this to your dependencies
199199
```Groovy
200-
compile 'io.opencensus:opencensus-impl:0.26.0'
201-
compile 'io.opencensus:opencensus-exporter-trace-stackdriver:0.26.0'
200+
compile 'io.opencensus:opencensus-impl:0.24.0'
201+
compile 'io.opencensus:opencensus-exporter-trace-stackdriver:0.24.0'
202202
```
203203
If you are using SBT, add this to your dependencies
204204
```Scala
205-
libraryDependencies += "io.opencensus" % "opencensus-impl" % "0.26.0"
206-
libraryDependencies += "io.opencensus" % "opencensus-exporter-trace-stackdriver" % "0.26.0"
205+
libraryDependencies += "io.opencensus" % "opencensus-impl" % "0.24.0"
206+
libraryDependencies += "io.opencensus" % "opencensus-exporter-trace-stackdriver" % "0.24.0"
207207
```
208208

209209
At the start of your application configure the exporter:
@@ -280,13 +280,13 @@ If you are using Maven, add this to your pom.xml file
280280
<dependency>
281281
<groupId>io.opencensus</groupId>
282282
<artifactId>opencensus-impl</artifactId>
283-
<version>0.26.0</version>
283+
<version>0.24.0</version>
284284
<scope>runtime</scope>
285285
</dependency>
286286
<dependency>
287287
<groupId>io.opencensus</groupId>
288288
<artifactId>opencensus-exporter-stats-stackdriver</artifactId>
289-
<version>0.26.0</version>
289+
<version>0.24.0</version>
290290
<exclusions>
291291
<exclusion>
292292
<groupId>io.grpc</groupId>
@@ -301,13 +301,13 @@ If you are using Maven, add this to your pom.xml file
301301
```
302302
If you are using Gradle, add this to your dependencies
303303
```Groovy
304-
compile 'io.opencensus:opencensus-impl:0.26.0'
305-
compile 'io.opencensus:opencensus-exporter-stats-stackdriver:0.26.0'
304+
compile 'io.opencensus:opencensus-impl:0.24.0'
305+
compile 'io.opencensus:opencensus-exporter-stats-stackdriver:0.24.0'
306306
```
307307
If you are using SBT, add this to your dependencies
308308
```Scala
309-
libraryDependencies += "io.opencensus" % "opencensus-impl" % "0.26.0"
310-
libraryDependencies += "io.opencensus" % "opencensus-exporter-stats-stackdriver" % "0.26.0"
309+
libraryDependencies += "io.opencensus" % "opencensus-impl" % "0.24.0"
310+
libraryDependencies += "io.opencensus" % "opencensus-exporter-stats-stackdriver" % "0.24.0"
311311
```
312312

313313
At the start of your application configure the exporter and enable the Bigtable stats views:
@@ -425,4 +425,4 @@ Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5]
425425
[kokoro-badge-image-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigtable/java8-win.svg
426426
[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigtable/java8-win.html
427427
[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigtable/java11.svg
428-
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigtable/java11.html
428+
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigtable/java11.html

0 commit comments

Comments
 (0)