Skip to content

Commit 87c7147

Browse files
authored
Remove wildcard + dependency (#7172)
Should help with maven central sporadic failure: ``` Could not determine the dependencies of task ':instrumentation:hibernate:hibernate-3.3:javaagent:test'. > Could not resolve all task dependencies for configuration ':instrumentation:hibernate:hibernate-3.3:javaagent:testRuntimeClasspath'. > Could not resolve javassist:javassist:+. ```
1 parent 3ae840b commit 87c7147

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

instrumentation/hibernate/hibernate-3.3/javaagent/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ dependencies {
2828
testInstrumentation(project(":instrumentation:hibernate:hibernate-4.0:javaagent"))
2929
testInstrumentation(project(":instrumentation:hibernate:hibernate-procedure-call-4.3:javaagent"))
3030

31-
testLibrary("org.hibernate:hibernate-core:3.3.0.SP1")
3231
testImplementation("org.hibernate:hibernate-annotations:3.4.0.GA")
33-
testImplementation("javassist:javassist:+")
32+
testImplementation("javassist:javassist:3.4.GA")
3433
testImplementation("com.h2database:h2:1.4.197")
3534
testImplementation("javax.xml.bind:jaxb-api:2.2.11")
3635
testImplementation("com.sun.xml.bind:jaxb-core:2.2.11")

0 commit comments

Comments
 (0)