diff --git a/README.md b/README.md index bf1e3da0d11..acdf2a741ea 100644 --- a/README.md +++ b/README.md @@ -107,8 +107,6 @@ For gradle, add: compile group: 'com.datadoghq', name: 'dd-trace-api', version: {version} ``` -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. - #### Example Add an annotation to some method in your code: @@ -144,14 +142,14 @@ For Maven, add this to pom.xml: io.opentracing opentracing-api - 0.30.0 + 0.31.0 io.opentracing opentracing-util - 0.30.0 + 0.31.0 @@ -165,8 +163,8 @@ For Maven, add this to pom.xml: For gradle, add: ``` -compile group: 'io.opentracing', name: 'opentracing-api', version: "0.30.0" -compile group: 'io.opentracing', name: 'opentracing-util', version: "0.30.0" +compile group: 'io.opentracing', name: 'opentracing-api', version: "0.31.0" +compile group: 'io.opentracing', name: 'opentracing-util', version: "0.31.0" compile group: 'com.datadoghq', name: 'dd-trace-ot', version: "${dd-trace-java.version}" ```