From 4dde19203ab250750bbbaccc17ca98344b72336f Mon Sep 17 00:00:00 2001 From: Florian Hotze Date: Sun, 20 Nov 2022 17:30:23 +0100 Subject: [PATCH] [jsscripting] Fix maven build (#13747) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fixed the maven build, that fails because webpack-cli version 5.0.0 doesn’t properly process the given entrypoint. Instead, webpack tries to use the entrypoint from openhab-js‘ webpack config file. Signed-off-by: Florian Hotze --- bundles/org.openhab.automation.jsscripting/pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bundles/org.openhab.automation.jsscripting/pom.xml b/bundles/org.openhab.automation.jsscripting/pom.xml index 8a69afe509..3c2659a549 100644 --- a/bundles/org.openhab.automation.jsscripting/pom.xml +++ b/bundles/org.openhab.automation.jsscripting/pom.xml @@ -48,9 +48,9 @@ com.github.eirslett frontend-maven-plugin - 1.12.0 + 1.12.1 - v16.17.1 + v16.17.1 target/js @@ -67,7 +67,7 @@ npm - install ${ohjs.version} webpack webpack-cli + install ${ohjs.version} webpack@5.75.0 webpack-cli@4.10.0 -- 2.47.3