Skip to content

Commit d9384b1

Browse files
committed
Fix some docs.
1 parent cc274cb commit d9384b1

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

‎README.md‎

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ For gradle, add:
107107
compile group: 'com.datadoghq', name: 'dd-trace-api', version: {version}
108108
```
109109

110-
The Java Agent lets you use `@Trace` not just for `com.example.myproject`, but also for any application whose name _begins_ like that, e.g. `com.example.myproject.foobar`. If you're tempted to list something like `["com", "io"]` to avoid having to fuss with this configuration as you add new projects, be careful; providing `@Trace`-ability to too many applications could hurt your package's build time.
111-
112110
#### Example
113111

114112
Add an annotation to some method in your code:
@@ -144,14 +142,14 @@ For Maven, add this to pom.xml:
144142
<dependency>
145143
<groupId>io.opentracing</groupId>
146144
<artifactId>opentracing-api</artifactId>
147-
<version>0.30.0</version>
145+
<version>0.31.0</version>
148146
</dependency>
149147

150148
<!-- OpenTracing Util -->
151149
<dependency>
152150
<groupId>io.opentracing</groupId>
153151
<artifactId>opentracing-util</artifactId>
154-
<version>0.30.0</version>
152+
<version>0.31.0</version>
155153
</dependency>
156154

157155
<!-- Datadog Tracer (only needed if you do not use dd-java-agent) -->
@@ -165,8 +163,8 @@ For Maven, add this to pom.xml:
165163
For gradle, add:
166164

167165
```
168-
compile group: 'io.opentracing', name: 'opentracing-api', version: "0.30.0"
169-
compile group: 'io.opentracing', name: 'opentracing-util', version: "0.30.0"
166+
compile group: 'io.opentracing', name: 'opentracing-api', version: "0.31.0"
167+
compile group: 'io.opentracing', name: 'opentracing-util', version: "0.31.0"
170168
compile group: 'com.datadoghq', name: 'dd-trace-ot', version: "${dd-trace-java.version}"
171169
```
172170

0 commit comments

Comments
 (0)