-
Notifications
You must be signed in to change notification settings - Fork 22
Support building with java 8 #169
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
Conversation
…es Deencapsulation.invoke and MockUp.getMockInstance so all uses of these methods needed rewriting
|
|
||
| private static AddThenHideOldStrategy _athos = new AddThenHideOldStrategy(); | ||
|
|
||
| private Object invoke(Object object, String methodName, Object... args) throws SecurityException, IllegalArgumentException, ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InstantiationException, InvocationTargetException { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we/should we use a common method in the ReflectionTricks class (test-utils project)?
Which would save writing this method multiple times
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably :)
In fact its quite similar to the existing reflectiveCall... methods in ReflectionTricks
Only problem is the method is actually slightly different in each class, but it should be doable - I will have a go.
LARS_versions.gradle
Outdated
| javax_json_version="1.0" | ||
| glassfish_json_version="1.0.+" | ||
| mongodb_java_version="2.13.0" | ||
| mongodb_java_version="2.14.+" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because the mongo jar version has to be specified exactly in the server.xml, and you have updated to 2.14.3, I think this needs to be exactly 2.14.3 as well. Even though that is a sucky thing to do
No description provided.