Skip to content

Commit

Permalink
Remove jvm arg from module with no tests
Browse files Browse the repository at this point in the history
  • Loading branch information
trask committed Oct 28, 2024
1 parent 4cc0a8f commit 038fbec
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,3 @@ dependencies {
implementation("org.testcontainers:testcontainers")
implementation("com.datastax.oss:java-driver-core:4.0.0")
}

tasks {
val testStableSemconv by registering(Test::class) {
jvmArgs("-Dotel.semconv-stability.opt-in=database")
}

check {
dependsOn(testStableSemconv)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,3 @@ dependencies {
compileOnly("com.google.auto.value:auto-value-annotations")
annotationProcessor("com.google.auto.value:auto-value")
}

tasks {
val testStableSemconv by registering(Test::class) {
jvmArgs("-Dotel.semconv-stability.opt-in=database")
}

check {
dependsOn(testStableSemconv)
}
}

0 comments on commit 038fbec

Please sign in to comment.