20 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
| plugins {
 | |
|   id("otel.java-conventions")
 | |
|   id("otel.publish-conventions")
 | |
| }
 | |
| 
 | |
| group = "io.opentelemetry.javaagent"
 | |
| 
 | |
| dependencies {
 | |
|   implementation(project(":instrumentation-api"))
 | |
| 
 | |
|   testImplementation(project(":testing-common"))
 | |
|   testImplementation(project(":instrumentation:resources:library"))
 | |
| }
 | |
| 
 | |
| tasks.withType<Test>().configureEach {
 | |
|   // required on jdk17
 | |
|   jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
 | |
|   jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
 | |
| }
 |