aboutsummaryrefslogtreecommitdiff
path: root/examples/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'examples/build.gradle')
-rw-r--r--examples/build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/build.gradle b/examples/build.gradle
index 41495041..aa056460 100644
--- a/examples/build.gradle
+++ b/examples/build.gradle
@@ -84,9 +84,9 @@ apply plugin: 'application'
startScripts.enabled = false
-task statsRunner(type: CreateStartScripts) {
- mainClassName = 'io.opencensus.examples.stats.StatsRunner'
- applicationName = 'StatsRunner'
+task tagContextExample(type: CreateStartScripts) {
+ mainClassName = 'io.opencensus.examples.tags.TagContextExample'
+ applicationName = 'TagContextExample'
outputDir = new File(project.buildDir, 'tmp')
classpath = jar.outputs.files + project.configurations.runtime
}
@@ -144,7 +144,7 @@ applicationDistribution.into('bin') {
from(multiSpansTracing)
from(multiSpansScopedTracing)
from(multiSpansContextTracing)
- from(statsRunner)
+ from(tagContextExample)
from(zPagesTester)
from(quickStart)
from(helloWorldServer)