Rename library-api artifact to instrumentation-api (#969)
This commit is contained in:
parent
72cfac20dc
commit
f46ba88c29
|
@ -7,7 +7,7 @@ dependencies {
|
|||
api deps.opentelemetryApi
|
||||
compileOnly deps.opentelemetrySdk
|
||||
implementation deps.slf4j
|
||||
implementation project(':library-api')
|
||||
implementation project(':instrumentation-api')
|
||||
|
||||
testImplementation project(':testing-common')
|
||||
testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.19.0'
|
||||
|
|
|
@ -6,7 +6,7 @@ apply from: "$rootDir/gradle/publish.gradle"
|
|||
archivesBaseName = projectDir.parentFile.name
|
||||
|
||||
dependencies {
|
||||
api project(':library-api')
|
||||
api project(':instrumentation-api')
|
||||
|
||||
api deps.opentelemetryApi
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ afterEvaluate {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':library-api')
|
||||
implementation project(':instrumentation-api')
|
||||
implementation project(':auto-api')
|
||||
// Apply common dependencies for instrumentation.
|
||||
implementation(project(':javaagent-tooling')) {
|
||||
|
|
|
@ -34,7 +34,7 @@ subprojects {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':library-api')
|
||||
implementation project(':instrumentation-api')
|
||||
implementation project(':auto-api')
|
||||
implementation(project(':javaagent-tooling')) {
|
||||
exclude module: ':javaagent-bootstrap'
|
||||
|
|
|
@ -14,7 +14,7 @@ dependencies {
|
|||
implementation group: 'org.slf4j', name: 'slf4j-simple', version: versions.slf4j
|
||||
// ^ Generally a bad idea for libraries, but we're shadowing.
|
||||
|
||||
implementation project(':library-api')
|
||||
implementation project(':instrumentation-api')
|
||||
implementation project(':auto-api')
|
||||
|
||||
testImplementation project(':testing-common')
|
||||
|
|
|
@ -15,7 +15,7 @@ configurations {
|
|||
dependencies {
|
||||
implementation project(':javaagent-bootstrap')
|
||||
implementation project(':auto-api')
|
||||
implementation project(':library-api')
|
||||
implementation project(':instrumentation-api')
|
||||
implementation project(':utils:thread-utils')
|
||||
|
||||
implementation deps.opentelemetryApi
|
||||
|
|
|
@ -97,7 +97,7 @@ tasks.withType(ShadowJar).configureEach {
|
|||
dependencies {
|
||||
testImplementation project(':javaagent-bootstrap')
|
||||
testImplementation project(':auto-api')
|
||||
testImplementation project(':library-api')
|
||||
testImplementation project(':instrumentation-api')
|
||||
testImplementation project(':utils:test-utils')
|
||||
|
||||
testImplementation deps.testLogging
|
||||
|
|
|
@ -28,7 +28,7 @@ include ':javaagent-tooling'
|
|||
include ':javaagent'
|
||||
include ':load-generator'
|
||||
|
||||
include ':library-api'
|
||||
include ':instrumentation-api'
|
||||
include ':auto-api'
|
||||
|
||||
// misc
|
||||
|
|
|
@ -36,7 +36,7 @@ dependencies {
|
|||
|
||||
implementation project(':javaagent-bootstrap')
|
||||
implementation project(':auto-api')
|
||||
implementation project(':library-api')
|
||||
implementation project(':instrumentation-api')
|
||||
implementation(project(':javaagent-tooling')) {
|
||||
// including :opentelemetry-sdk-shaded-for-testing above instead
|
||||
exclude group: 'io.opentelemetry', module: 'opentelemetry-sdk'
|
||||
|
|
Loading…
Reference in New Issue