diff --git a/integration-tests/common-test-code/src/main/java/com/vaadin/flow/quarkus/it/AppShellConfig.java b/integration-tests/common-test-code/src/main/java/com/vaadin/flow/quarkus/it/AppShellConfig.java
index 65ee0f2..578e2f6 100644
--- a/integration-tests/common-test-code/src/main/java/com/vaadin/flow/quarkus/it/AppShellConfig.java
+++ b/integration-tests/common-test-code/src/main/java/com/vaadin/flow/quarkus/it/AppShellConfig.java
@@ -1,12 +1,8 @@
package com.vaadin.flow.quarkus.it;
import com.vaadin.flow.component.page.AppShellConfigurator;
-import com.vaadin.flow.component.page.Push;
-import com.vaadin.flow.shared.ui.Transport;
import com.vaadin.flow.theme.Theme;
@Theme("reusable-theme")
-// TODO: Enable websockets when they are in use in Quarkus
-@Push(transport = Transport.LONG_POLLING)
public class AppShellConfig implements AppShellConfigurator {
}
diff --git a/integration-tests/common-test-code/src/main/java/com/vaadin/flow/quarkus/it/TestServlet.java b/integration-tests/common-test-code/src/main/java/com/vaadin/flow/quarkus/it/TestServlet.java
index e64fbc5..e33ec5e 100644
--- a/integration-tests/common-test-code/src/main/java/com/vaadin/flow/quarkus/it/TestServlet.java
+++ b/integration-tests/common-test-code/src/main/java/com/vaadin/flow/quarkus/it/TestServlet.java
@@ -6,7 +6,10 @@
import com.vaadin.quarkus.QuarkusVaadinServlet;
@WebServlet(urlPatterns = "/*", name = "TestServlet", asyncSupported = true, initParams = {
- @WebInitParam(name = "org.atmosphere.websocket.suppressJSR356", value = "true") })
+ @WebInitParam(name = "org.atmosphere.websocket.suppressJSR356", value = "true"),
+ // TODO: Enable dev mode gizmo when websockets are in use
+ @WebInitParam(name = "devmode.gizmo.enabled", value = "false")})
public class TestServlet extends QuarkusVaadinServlet {
- // This servlet is here to give the suppressJSR356 parameter
+ // This servlet is here to give the suppressJSR356 parameter and disable
+ // dev mode gizmo which triggers unsupported web-sockets connection
}
diff --git a/pom.xml b/pom.xml
index 8161ea8..4e3db28 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,7 +34,7 @@
${surefire-plugin.version}
true
- 8.0-SNAPSHOT
+ 9.0-SNAPSHOT
2.3.0.Final
3.0.0-M5
@@ -42,7 +42,7 @@
-
central
@@ -61,7 +61,7 @@
-
central