Publish lettuce and mongo common (#2148)

This commit is contained in:
Trask Stalnaker 2021-01-31 20:26:08 -08:00 committed by GitHub
parent 1ebb58a596
commit 23945d97e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,9 @@
// not applying $rootDir/gradle/instrumentation.gradle because that brings running tests with agent
// infrastructure, and this module only wants to run unit tests
group = 'io.opentelemetry.javaagent.instrumentation'
ext.mavenGroupId = 'io.opentelemetry.javaagent.instrumentation'
apply from: "$rootDir/gradle/java.gradle"
apply from: "$rootDir/gradle/publish.gradle"
archivesBaseName = projectDir.parentFile.name

View File

@ -1,11 +1,13 @@
// not applying $rootDir/gradle/instrumentation.gradle because that brings running tests with agent
// infrastructure, and this module only wants to run unit tests
group = 'io.opentelemetry.javaagent.instrumentation'
ext.mavenGroupId = 'io.opentelemetry.javaagent.instrumentation'
apply from: "$rootDir/gradle/java.gradle"
apply from: "$rootDir/gradle/publish.gradle"
archivesBaseName = projectDir.parentFile.name
dependencies {
compileOnly project(':instrumentation-api')
compileOnly project(':javaagent-api')