mirror of
https://github.com/danieldemus/openhab-core.git
synced 2026-07-29 12:34:22 +02:00
Downgrade Jollyday again to fix Java 11 build issues (#1195)
Jollyday requires JAXB 2.3 on Java 11 whereas only 2.2 is available during compilation for Java 8 compatibility. See also: * https://github.com/openhab/openhab2-addons/issues/6334 * https://github.com/openhab/openhab-core/pull/1170 * https://github.com/openhab/openhab-core/pull/1169 Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
+3
-1
@@ -282,7 +282,9 @@
|
||||
<dependency>
|
||||
<groupId>de.jollyday</groupId>
|
||||
<artifactId>jollyday</artifactId>
|
||||
<version>0.5.9</version>
|
||||
<!-- Upgrading to 0.5.9 causes Java 11 builds to fail -->
|
||||
<!-- On Java 11 the bundle requires JAXB 2.3 whereas we depend on JAXB 2.2 for Java 8 compatibility -->
|
||||
<version>0.5.8</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
+4
-2
@@ -893,8 +893,10 @@
|
||||
<dependency>
|
||||
<groupId>de.jollyday</groupId>
|
||||
<artifactId>jollyday</artifactId>
|
||||
<version>0.5.9</version>
|
||||
<scope>compile</scope>
|
||||
<!-- Upgrading to 0.5.9 and adding compile scope causes Java 11 builds to fail -->
|
||||
<!-- On Java 11 the bundle requires JAXB 2.3 whereas we depend on JAXB 2.2 for Java 8 compatibility -->
|
||||
<version>0.5.8</version>
|
||||
<!-- <scope>compile</scope> -->
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
Reference in New Issue
Block a user