-
-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
support latest asm in accessor-smart #70
Comments
that a good opportunity to upgrade all version number :) |
I did not use a pom.xml file for maybe 7 years, or open a PR... it's nice too. 😁 putting: <!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.1</version>
</dependency> In the accessors-smart pom.xml might not be the best solution. |
Do you know if accessors-smart is able to run with with asm from 8 to 9.1 ? if it is the case then updating osgi metadata only will be the best solution |
Test unit will told us :) |
Currently accessor-smart depends on asm 8 which is a 1 year old release.
it should depends on 9.1 which is latest (and also to be able to use recent version other libs also based on asm)
if accessor-smart is supporting multiple asm version it should override osgi manifest as by default only asm 8 is supported
(for example by adding this instruction to maven-bundle-plugin in pom.xml)
<Import-Package>org.objectweb.asm;version="[8.0,10),*</Import-Package>
The text was updated successfully, but these errors were encountered: