19 lines
		
	
	
		
			425 B
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			425 B
		
	
	
	
		
			Groovy
		
	
	
	
apply from: "$rootDir/gradle/java.gradle"
 | 
						|
apply from: "$rootDir/gradle/publish.gradle"
 | 
						|
apply from: "$rootDir/gradle/instrumentation-common.gradle"
 | 
						|
 | 
						|
ext {
 | 
						|
  mavenGroupId = 'io.opentelemetry.instrumentation'
 | 
						|
}
 | 
						|
 | 
						|
archivesBaseName = projectDir.parentFile.name
 | 
						|
 | 
						|
dependencies {
 | 
						|
  api project(':instrumentation-api')
 | 
						|
 | 
						|
  api deps.opentelemetryApi
 | 
						|
  api deps.opentelemetryContextProp
 | 
						|
 | 
						|
  testImplementation project(':testing-common')
 | 
						|
}
 |