-
Notifications
You must be signed in to change notification settings - Fork 18
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
Support Parsing Java Libraries Compiled With Java 8 #29
Comments
I've got the problem too. |
You can have a look at the fork of @MLanghammer. He included the latest BCEL library and some performance improvements but does not provide an update site or something similar. |
Official BCEL v6.0 has been released on 14 Jul 2016, please switch to this version |
Hey, I think I'm having a problem extracting a model with JaMoPP from Java 8 code due to this here mentioned issue. The official website of JaMoPP seems to be down, so I dont know how to attain any documentation, and I just found this site here which mentioned to use the jamoppc.jar from the Util directory to get started. Can anyone help me out here and explain to me how I can extract a model from Java 8 code? Thank you very much. |
@Elothis instead of using the |
It is not possible to parse Java libraries compiled with Java 8. This is problematic because Java 7 is not updated anymore. An upgrade to Java 8 is required.
The cause of the problem is the insufficient Java 8 support of the Apache BCEL library version that you use. The issue BCEL173 has already been solved for BCEL 6.0. Unfortunately, BCEL 6.0 is neither released nor announced to be released yet.
You might try the bcel-findbugs library instead, which has been suggest in the issue mentioned above for the time until BCEL 6.0 is released.
The text was updated successfully, but these errors were encountered: