tkobayas commented on PR #6864:
URL:
https://github.com/apache/incubator-kie-drools/pull/6864#issuecomment-5164341645
1. OptaPlannerDevUITest — Connection refused: localhost/127.0.0.1:0. The
DevUI test uses quarkus.http.test-port for its WebSocket connection, and port 0
breaks it because the DevUI test framework tries to
literally connect to port 0 instead of the randomly assigned port. This is
a known Quarkus DevUI test limitation.
-> We shouldn't fully overwrite with mvn option
`-Dquarkus.http.test-port=0`. Change the approach... -> Set
quarkus.http.test-port=0 in parent pom, then any test can overwrite if needed.
2. Dependency resolution failures — the main problem. Many 999-SNAPSHOT
artifacts can't be found:
- kogito-maven-plugin:999-SNAPSHOT
- kie-addons-quarkus-flyway-deployment:999-SNAPSHOT
- jbpm-quarkus-deployment:999-SNAPSHOT
- kie-addons-quarkus-kubernetes-deployment:999-SNAPSHOT
- etc.
because a quarkus project has an implicit dependency to `-deployment`
which maven reactor cannot order.
-> Split into 2 phases. 1) install, 2) test
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]