Prepare the release of the opencensus library. (#357) · CodingFabian/opencensus-java@3b74070 · GitHub
Skip to content

Commit 3b74070

Browse files
author
Bogdan Drutu
authored
Prepare the release of the opencensus library. (census-instrumentation#357)
1 parent 461b4ed commit 3b74070

51 files changed

Lines changed: 88 additions & 22 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

all/build.gradle

Lines changed: 4 additions & 1 deletion

api/src/main/java/io/opencensus/common/Internal.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
import java.lang.annotation.Target;
2121

2222
/**
23-
* Annotates a program element (class, method, package etc) which is internal to opencensus, not
24-
* part of the public API, and should not be used by users of the opencensus library.
23+
* Annotates a program element (class, method, package etc) which is internal to OpenCensus, not
24+
* part of the public API, and should not be used by users of the OpenCensus library.
2525
*/
2626
@Internal
2727
@Retention(RetentionPolicy.SOURCE)

benchmarks/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jmh {
2323
}
2424

2525
dependencies {
26-
compile project(':core'),
27-
project(':core_impl')
28-
project(':core_impl_java')
26+
compile project(':opencensus-api'),
27+
project(':opencensus-impl-core')
28+
project(':opencensus-impl')
2929
}
3030

3131
compileJmhJava {

core/README.md

Lines changed: 1 addition & 1 deletion

core_impl/README.md

Lines changed: 1 addition & 1 deletion

core_impl/build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@ description = 'OpenCensus Core Impl'
22

33
dependencies {
44
compile project(':core'),
5+
project(':opencensus-api'),
6+
project(':opencensus-impl-core'),
57
libraries.guava
68

7-
compileOnly libraries.auto_value
8-
99
testCompile project(':core')
1010

1111
signature "org.codehaus.mojo.signature:java16:+@signature"
1212
}
1313

14-
javadoc.exclude 'io/opencensus/internal/**'
14+
// Disable javadoc because fails with the error:
15+
// javadoc: error - No public or protected classes found to document.
16+
javadoc {
17+
enabled = false
18+
}

core_impl_android/README.md

Lines changed: 1 addition & 1 deletion

core_impl_java/README.md

Lines changed: 1 addition & 1 deletion

core_impl_java/build.gradle

Lines changed: 2 additions & 4 deletions

impl/README.md

Lines changed: 5 additions & 0 deletions

0 commit comments

Comments
 (0)