-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update byte buddy to 1.14.5 #151
Conversation
Hey @nvollmar, thanks for the attempt but I think this is not something we can get in as-is. My understanding is that @dpsoft has a few minor modifications in bytebuddy that he always applies on top of the official version and that's why we have to do some manual intervention all the time to upgrade the bytebuddy dependency. @dpsoft could you maybe drop here the changes you apply to make this happen? |
Yes, I saw that when I tried to find the issue. At least the pom in the jar was modified - now one of the asm dependencies is missing. |
@nvollmar the changes to apply to bytebuddy in order to avoid some issues when instrumenting scala stuff are:
Then just run(java 8):
Enjoy! |
Thanks for the hints. I'll see if I can get that working. |
8800b51
to
e9970e4
Compare
@ivantopo I patched byte-buddy as advised and the tests are locally running now. |
Looks like com.github.maiflai.scalatest is not maintained anymore and the last version is incompatible with Gradle 8.0+:
|
thx @dpsoft ! |
Refs #150