Skip to content

Commit fa3fb6e

Browse files
authored
Merge pull request #197 from DataDog/tyler/docs
Fix some docs.
2 parents b60dbb9 + d9384b1 commit fa3fb6e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

README.md

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

109-
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.
110-
111109
#### Example
112110

113111
Add an annotation to some method in your code:
@@ -143,14 +141,14 @@ For Maven, add this to pom.xml:
143141
<dependency>
144142
<groupId>io.opentracing</groupId>
145143
<artifactId>opentracing-api</artifactId>
146-
<version>0.30.0</version>
144+
<version>0.31.0</version>
147145
</dependency>
148146

149147
<!-- OpenTracing Util -->
150148
<dependency>
151149
<groupId>io.opentracing</groupId>
152150
<artifactId>opentracing-util</artifactId>
153-
<version>0.30.0</version>
151+
<version>0.31.0</version>
154152
</dependency>
155153

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

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

0 commit comments

Comments
 (0)