[h2] Re: classes found in the wrong directory

2019-04-26 Thread George Ivanov
Thanks again! I created an issue in Atlassian Ecosystem: https://ecosystem.atlassian.net/servicedesk/customer/portal/14/DEVHELP-2644 -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from

[h2] Re: classes found in the wrong directory

2019-04-26 Thread Evgenij Ryazanov
I think you need to discuss your problem with developers of software that you use. A lot of modern libraries are packed in multi-release jars, they should support them properly. Of course, you can create an own repository somewhere and place a patched jar into it, or use some other way. But

[h2] Re: classes found in the wrong directory

2019-04-26 Thread George Ivanov
Thank you, Evgeniy! In fact I use H2 as dependency in the pom file: com.h2database h2 1.4.197 So, H2 gets downloaded during the plugin build process. Is there a workaround in this case? Thank you, George On Friday, April 5, 2019 at 4:41:54 PM UTC+3, Evgenij Ryazanov

[h2] Re: classes found in the wrong directory

2019-04-05 Thread Evgenij Ryazanov
H2 is still fully compatible with Java 7. This problem is not related with Java. But atlassian-plugin or some other piece of software that you use performs incorrect unexpected checks and needs to be fixed to be compatible with multi-release jars. And yes, you can remove the entire

[h2] Re: classes found in the wrong directory

2019-04-05 Thread George Ivanov
Thank you! Unfortunately my code has to be based on JAVA 1.7 and stick with it for a while. So, am I correct that the only way for me is manual deletion from H2 jar? George On Thursday, April 4, 2019 at 4:24:02 PM UTC+3, Evgenij Ryazanov wrote: > > It looks like software that you use does not

[h2] Re: classes found in the wrong directory

2019-04-04 Thread Evgenij Ryazanov
It looks like software that you use does not support Multi-release jar files: https://openjdk.java.net/jeps/238 Multi-relese jars are very common now. If you use the latest version of that software, check its bugtracker and post a new issue in it, if such issue does not exist yet. You can