quarkusio / quarkus-workshops

Hosts Quarkus related workshops
https://quarkus.io/quarkus-workshops/super-heroes/
Apache License 2.0
174 stars 172 forks source link

undertow-websockets or esteasy-reactive ? #113

Open agoncal opened 2 years ago

agoncal commented 2 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 ?

cescoffier commented 2 years ago

Neither, it should be:

        <dependency>
            <groupId>io.quarkus</groupId>
            <artifactId>quarkus-websockets</artifactId>
        </dependency>