diff options
| author | Bogdan Drutu <bdrutu@google.com> | 2017-05-13 15:07:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-13 15:07:49 -0700 |
| commit | f94b27558dfcfcd2a5f79b78bcdd67dd2aca3491 (patch) | |
| tree | 8f2813449537cb565ed7cf4a1920509e008050d0 /examples | |
| parent | 10dc8019eb68e31651efad9e929f8977986d1860 (diff) | |
| download | platform_external_opencensus-java-f94b27558dfcfcd2a5f79b78bcdd67dd2aca3491.tar.gz platform_external_opencensus-java-f94b27558dfcfcd2a5f79b78bcdd67dd2aca3491.tar.bz2 platform_external_opencensus-java-f94b27558dfcfcd2a5f79b78bcdd67dd2aca3491.zip | |
Fix the examples application. (#300)
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/build.gradle b/examples/build.gradle index 30b305e9..47563924 100644 --- a/examples/build.gradle +++ b/examples/build.gradle @@ -18,28 +18,28 @@ apply plugin: 'application' startScripts.enabled = false task statsRunner(type: CreateStartScripts) { - mainClassName = 'com.google.instrumentation.trace.examples.StatsRunner' + mainClassName = 'com.google.instrumentation.examples.stats.StatsRunner' applicationName = 'StatsRunner' outputDir = new File(project.buildDir, 'tmp') classpath = jar.outputs.files + project.configurations.runtime } task multiSpansTracing(type: CreateStartScripts) { - mainClassName = 'com.google.instrumentation.trace.examples.MultiSpansTracing' + mainClassName = 'com.google.instrumentation.examples.trace.MultiSpansTracing' applicationName = 'MultiSpansTracing' outputDir = new File(project.buildDir, 'tmp') classpath = jar.outputs.files + project.configurations.runtime } task multiSpansScopedTracing(type: CreateStartScripts) { - mainClassName = 'com.google.instrumentation.trace.examples.MultiSpansScopedTracing' + mainClassName = 'com.google.instrumentation.examples.trace.MultiSpansScopedTracing' applicationName = 'MultiSpansScopedTracing' outputDir = new File(project.buildDir, 'tmp') classpath = jar.outputs.files + project.configurations.runtime } task multiSpansContextTracing(type: CreateStartScripts) { - mainClassName = 'com.google.instrumentation.trace.examples.MultiSpansContextTracing' + mainClassName = 'com.google.instrumentation.examples.trace.MultiSpansContextTracing' applicationName = 'MultiSpansContextTracing' outputDir = new File(project.buildDir, 'tmp') classpath = jar.outputs.files + project.configurations.runtime |
