Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhirockzz/8c6c47886db49c62a0c14bb27c504032 to your computer and use it in GitHub Desktop.
Save abhirockzz/8c6c47886db49c62a0c14bb27c504032 to your computer and use it in GitHub Desktop.
Maven Dependencies for Tyrus with Grizzly container
...
<dependencies>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.tyrus</groupId>
<artifactId>tyrus-server</artifactId>
<version>1.12</version>
</dependency>
<dependency>
<groupId>org.glassfish.tyrus</groupId>
<artifactId>tyrus-container-grizzly-server</artifactId>
<version>1.12</version>
</dependency>
</dependencies>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment