Skip to content

Commit

Permalink
Remove wildcard + dependency (#7172)
Browse files Browse the repository at this point in the history
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:+.
```
  • Loading branch information
trask authored Nov 15, 2022
1 parent 3ae840b commit 87c7147
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ dependencies {
testInstrumentation(project(":instrumentation:hibernate:hibernate-4.0:javaagent"))
testInstrumentation(project(":instrumentation:hibernate:hibernate-procedure-call-4.3:javaagent"))

testLibrary("org.hibernate:hibernate-core:3.3.0.SP1")
testImplementation("org.hibernate:hibernate-annotations:3.4.0.GA")
testImplementation("javassist:javassist:+")
testImplementation("javassist:javassist:3.4.GA")
testImplementation("com.h2database:h2:1.4.197")
testImplementation("javax.xml.bind:jaxb-api:2.2.11")
testImplementation("com.sun.xml.bind:jaxb-core:2.2.11")
Expand Down

0 comments on commit 87c7147

Please sign in to comment.