Open agoncal opened 3 years ago
@cescoffier I am confused with the dependencies on the event-statistics. If you look at our pom.xml we have:
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-undertow-websockets</artifactId> </dependency>
But when you follow the workshop and generate the project, instead, we have:
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy-reactive</artifactId> </dependency>
Which one is the right one ?
Neither, it should be:
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-websockets</artifactId> </dependency>
@cescoffier I am confused with the dependencies on the event-statistics. If you look at our pom.xml we have:
But when you follow the workshop and generate the project, instead, we have:
Which one is the right one ?