-
It seems the protocol is not supported since 5.0.0.Alpha2, and I changed to managementProtocol, and I set the value to java.lang.RuntimeException: java.net.MalformedURLException: Unsupported protocol: remote+http
Caused by: java.net.MalformedURLException: Unsupported protocol: remote+http See the complete log on Github actions: https://github.com/hantsy/jakartaee9-starter-boilerplate/runs/4567754712?check_suite_focus=true |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@hantsy It's likely a result of this https://issues.redhat.com/browse/WFARQ-99. You can either downgrade to 5.0.0.Alpha1 or you can add the following dependencies: <dependency>
<groupId>org.jboss.remoting</groupId>
<artifactId>jboss-remoting</artifactId>
<version>5.0.23.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.remotingjmx</groupId>
<artifactId>remoting-jmx</artifactId>
<version>3.0.4.Final</version>
<scope>test</scope>
</dependency> I've filed https://issues.redhat.com/browse/WFARQ-102 to fix this. Another note on that profiles surefire configuration. You should likely remove the |
Beta Was this translation helpful? Give feedback.
@hantsy It's likely a result of this https://issues.redhat.com/browse/WFARQ-99. You can either downgrade to 5.0.0.Alpha1 or you can add the following dependencies:
I've filed https://issues.redhat.com/browse/WFARQ-102 to fix this.
Another note on that profiles surefire configuration. You should likely remove the
<java.util.logging.manager>org.jboss.…