Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions launch/app/app.bndrun
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ feature.openhab-model-runtime-all: \
bnd.identity;id='org.openhab.core.io.rest.transform',\
bnd.identity;id='org.openhab.core.io.rest.ui',\
bnd.identity;id='org.openhab.core.io.websocket',\
bnd.identity;id='org.openhab.core.sitemap',\
bnd.identity;id='org.openhab.ui',\
bnd.identity;id='org.openhab.ui.basic',\
bnd.identity;id='org.openhab.ui.iconset.classic',\
Expand Down Expand Up @@ -128,11 +129,11 @@ feature.openhab-model-runtime-all: \
org.ops4j.pax.logging.pax-logging-api;version='[2.3.2,2.3.3)',\
org.ops4j.pax.logging.pax-logging-log4j2;version='[2.3.2,2.3.3)',\
com.fasterxml.jackson.core.jackson-annotations;version='[2.21.0,2.21.1)',\
com.fasterxml.jackson.core.jackson-core;version='[2.21.1,2.21.2)',\
com.fasterxml.jackson.core.jackson-databind;version='[2.21.1,2.21.2)',\
com.fasterxml.jackson.dataformat.jackson-dataformat-xml;version='[2.21.1,2.21.2)',\
com.fasterxml.jackson.dataformat.jackson-dataformat-yaml;version='[2.21.1,2.21.2)',\
com.fasterxml.jackson.datatype.jackson-datatype-jsr310;version='[2.21.1,2.21.2)',\
com.fasterxml.jackson.dataformat.jackson-dataformat-yaml;version='[2.19.2,2.19.3)',\
tools.jackson.core.jackson-core;version='[3.1.0,3.1.1)',\
tools.jackson.core.jackson-databind;version='[3.1.0,3.1.1)',\
tools.jackson.dataformat.jackson-dataformat-xml;version='[3.1.0,3.1.1)',\
tools.jackson.dataformat.jackson-dataformat-yaml;version='[3.1.0,3.1.1)',\
com.fasterxml.woodstox.woodstox-core;version='[6.6.2,6.6.3)',\
com.google.gson;version='[2.13.2,2.13.3)',\
com.google.guava;version='[33.5.0,33.5.1)',\
Expand Down Expand Up @@ -234,6 +235,7 @@ feature.openhab-model-runtime-all: \
org.osgi.util.function;version='[1.2.0,1.2.1)',\
org.osgi.util.promise;version='[1.3.0,1.3.1)',\
org.threeten.extra;version='[1.8.0,1.8.1)',\
org.snakeyaml.engine;version='[3.0.1,3.0.2)',\
org.yaml.snakeyaml;version='[2.5.0,2.5.1)',\
si-units;version='[2.2.3,2.2.4)',\
si-quantity;version='[2.2.3,2.2.4)',\
Expand Down Expand Up @@ -298,5 +300,10 @@ feature.openhab-model-runtime-all: \
org.openhab.ui;version='[5.2.0,5.2.1)',\
org.openhab.ui.basic;version='[5.2.0,5.2.1)',\
org.openhab.ui.iconset.classic;version='[5.2.0,5.2.1)',\
de.focus_shift.jollyday-core;version='[1.8.1,1.8.2)',\
de.focus_shift.jollyday-jackson;version='[1.8.1,1.8.2)'
de.focus_shift.jollyday-core;version='[2.3.0,2.3.1)',\
de.focus_shift.jollyday-jackson;version='[2.3.0,2.3.1)',\
com.fasterxml.jackson.core.jackson-core;version='[2.19.2,2.19.3)',\
com.fasterxml.jackson.core.jackson-databind;version='[2.19.2,2.19.3)',\
com.fasterxml.jackson.datatype.jackson-datatype-jsr310;version='[2.19.2,2.19.3)',\
org.jspecify.jspecify;version='[1.0.0,1.0.1)',\
org.openhab.core.sitemap;version='[5.2.0,5.2.1)'
15 changes: 15 additions & 0 deletions launch/app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,21 @@
<scope>runtime</scope>
</dependency>

<!-- this is needed as long as we have dependencies to jackson 2, -->
<!-- the app does not resolve correctly without it -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.19.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.5</version>
<scope>runtime</scope>
</dependency>

<!-- uncomment this and add the name of your binding that you want to work on
<dependency>
<groupId>org.openhab.addons.bundles</groupId>
Expand Down