| # OpenCensus Java Trace Exporter Util |
| |
| The *OpenCensus Trace Exporter Util* is the Java helper package for all trace exporters. |
| |
| ## Quickstart |
| |
| ### Add the dependencies to your project |
| |
| For Maven add to your `pom.xml`: |
| ```xml |
| <dependencies> |
| <dependency> |
| <groupId>io.opencensus</groupId> |
| <artifactId>opencensus-api</artifactId> |
| <version>0.22.0</version> |
| </dependency> |
| <dependency> |
| <groupId>io.opencensus</groupId> |
| <artifactId>opencensus-exporter-trace-util</artifactId> |
| <version>0.22.0</version> |
| </dependency> |
| </dependencies> |
| ``` |
| |
| For Gradle add to your dependencies: |
| ```groovy |
| compile 'io.opencensus:opencensus-api:0.22.0' |
| compile 'io.opencensus:opencensus-exporter-trace-util:0.22.0' |
| ``` |