-
Notifications
You must be signed in to change notification settings - Fork 19
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
Version 6.2.0 nicht kompatibel mit Java 8 #84
Comments
Hallo Klaus,
wird schwierig. Bin gerade im Tessin im Urlaub. Problem ist, dass ich eine Reihe von Libs aktualisiert habe, u.a. auch die von patterntesting-rt. Aber was du probieren kannst: Exclude einfach die Patterntesting-Lib aus den Dependencies und füge dann explizit die patterntesting-rt 2.1.2 (das müsste die letzte Version sein, die mit Java 8 gebaut wurde. Im POM müsste dass dann etwas so aussehen:
<dependency>
<groupId>com.github.oboehm</groupId>
<artifactId>gdv-xport-lib</artifactId>
<version>6.2.0</version>
<exclusions>
<exclusion>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
<version>2.1.2</version>
</dependency>
Mit freundlichen Grüßen
oli b.
… Am 22.06.2022 um 14:36 schrieb Klaus Junke ***@***.***>:
Hi Oli,
wir entwickeln gegen Java 8.
Beim Versuch, die aktuelle Rel-Version zu benutzen, erhalten wir folgende Fehlermeldung:
Exception in thread "main" java.lang.UnsupportedClassVersionError: patterntesting/runtime/log/LogWatch has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:756)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:473)
at java.net.URLClassLoader.access$100(URLClassLoader.java:74)
at java.net.URLClassLoader$1.run(URLClassLoader.java:369)
at java.net.URLClassLoader$1.run(URLClassLoader.java:363)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:362)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
at gdv.xport.satz.xml.XmlService.parse(XmlService.java:210)
at gdv.xport.satz.xml.XmlService.(XmlService.java:206)
at gdv.xport.satz.xml.XmlService.(XmlService.java:190)
at gdv.xport.satz.xml.XmlService.createXmlService(XmlService.java:160)
at gdv.xport.satz.xml.XmlService.createXmlService(XmlService.java:153)
at gdv.xport.satz.xml.XmlService.getInstance(XmlService.java:95)
Kannst du hier bitte neu kompatibel bauen?
Gruß
Klaus
—
Reply to this email directly, view it on GitHub <#84>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AABAY7I2G4F2MIBEFONFR2TVQMCERANCNFSM5ZQCEAXA>.
You are receiving this because you are subscribed to this thread.
|
Hi Oli,
danke für den Tip. Funktioniert!
Wünsch dir weiterhin einen erholsamen Urlaub..
Gruß
Klaus
Von: Oliver Boehm ***@***.***>
Gesendet: Mittwoch, 22. Juni 2022 21:10
An: oboehm/gdv.xport ***@***.***>
Cc: Junke, Dr. Klaus-Dieter (ik3-sta) ***@***.***>; Author ***@***.***>
Betreff: Re: [oboehm/gdv.xport] Version 6.2.0 nicht kompatibel mit Java 8 (Issue #84)
Hallo Klaus,
wird schwierig. Bin gerade im Tessin im Urlaub. Problem ist, dass ich eine Reihe von Libs aktualisiert habe, u.a. auch die von patterntesting-rt. Aber was du probieren kannst: Exclude einfach die Patterntesting-Lib aus den Dependencies und füge dann explizit die patterntesting-rt 2.1.2 (das müsste die letzte Version sein, die mit Java 8 gebaut wurde. Im POM müsste dass dann etwas so aussehen:
<dependency>
<groupId>com.github.oboehm</groupId>
<artifactId>gdv-xport-lib</artifactId>
<version>6.2.0</version>
<exclusions>
<exclusion>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
<version>2.1.2</version>
</dependency>
Mit freundlichen Grüßen
oli b.
Am 22.06.2022 um 14:36 schrieb Klaus Junke ***@***.***<mailto:***@***.***>>:
Hi Oli,
wir entwickeln gegen Java 8.
Beim Versuch, die aktuelle Rel-Version zu benutzen, erhalten wir folgende Fehlermeldung:
Exception in thread "main" java.lang.UnsupportedClassVersionError: patterntesting/runtime/log/LogWatch has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:756)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:473)
at java.net.URLClassLoader.access$100(URLClassLoader.java:74)
at java.net.URLClassLoader$1.run(URLClassLoader.java:369)
at java.net.URLClassLoader$1.run(URLClassLoader.java:363)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:362)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
at gdv.xport.satz.xml.XmlService.parse(XmlService.java:210)
at gdv.xport.satz.xml.XmlService.(XmlService.java:206)
at gdv.xport.satz.xml.XmlService.(XmlService.java:190)
at gdv.xport.satz.xml.XmlService.createXmlService(XmlService.java:160)
at gdv.xport.satz.xml.XmlService.createXmlService(XmlService.java:153)
at gdv.xport.satz.xml.XmlService.getInstance(XmlService.java:95)
Kannst du hier bitte neu kompatibel bauen?
Gruß
Klaus
—
Reply to this email directly, view it on GitHub <#84><https://urldefense.com/v3/__https:/github.com/oboehm/gdv.xport/issues/84*3E__;JQ!!CdWb0g08DYTo!KFAUQEw62NvpAVEULps-9-RUl4-Je_X9wDm463FMGu-NINVswoOO5m6lS6dU3irn8k4LDZya-jWsyd-fjQsblKpuoMlio2MUHgLMIQ$>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AABAY7I2G4F2MIBEFONFR2TVQMCERANCNFSM5ZQCEAXA><https://urldefense.com/v3/__https:/github.com/notifications/unsubscribe-auth/AABAY7I2G4F2MIBEFONFR2TVQMCERANCNFSM5ZQCEAXA*3E__;JQ!!CdWb0g08DYTo!KFAUQEw62NvpAVEULps-9-RUl4-Je_X9wDm463FMGu-NINVswoOO5m6lS6dU3irn8k4LDZya-jWsyd-fjQsblKpuoMlio2N0u_Qq3A$>.
You are receiving this because you are subscribed to this thread.
—
Reply to this email directly, view it on GitHub<https://urldefense.com/v3/__https:/github.com/oboehm/gdv.xport/issues/84*issuecomment-1163503645__;Iw!!CdWb0g08DYTo!KFAUQEw62NvpAVEULps-9-RUl4-Je_X9wDm463FMGu-NINVswoOO5m6lS6dU3irn8k4LDZya-jWsyd-fjQsblKpuoMlio2MrAPybrQ$>, or unsubscribe<https://urldefense.com/v3/__https:/github.com/notifications/unsubscribe-auth/AUNIUV3KITPRSDIKJTKB56TVQNQINANCNFSM5ZQCEAXA__;!!CdWb0g08DYTo!KFAUQEw62NvpAVEULps-9-RUl4-Je_X9wDm463FMGu-NINVswoOO5m6lS6dU3irn8k4LDZya-jWsyd-fjQsblKpuoMlio2PeuBk5Hg$>.
You are receiving this because you authored the thread.Message ID: ***@***.******@***.***>>
|
mit 6.2.1 behoben |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Oli,
wir entwickeln gegen Java 8.
Beim Versuch, die aktuelle Rel-Version zu benutzen, erhalten wir folgende Fehlermeldung:
Exception in thread "main" java.lang.UnsupportedClassVersionError: patterntesting/runtime/log/LogWatch has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:756)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:473)
at java.net.URLClassLoader.access$100(URLClassLoader.java:74)
at java.net.URLClassLoader$1.run(URLClassLoader.java:369)
at java.net.URLClassLoader$1.run(URLClassLoader.java:363)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:362)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
at gdv.xport.satz.xml.XmlService.parse(XmlService.java:210)
at gdv.xport.satz.xml.XmlService.(XmlService.java:206)
at gdv.xport.satz.xml.XmlService.(XmlService.java:190)
at gdv.xport.satz.xml.XmlService.createXmlService(XmlService.java:160)
at gdv.xport.satz.xml.XmlService.createXmlService(XmlService.java:153)
at gdv.xport.satz.xml.XmlService.getInstance(XmlService.java:95)
Kannst du hier bitte neu kompatibel bauen?
Gruß
Klaus
The text was updated successfully, but these errors were encountered: