Skip to content
Snippets Groups Projects
Commit bf6ee4bc authored by Sven Kästle's avatar Sven Kästle
Browse files

fix: Include provided as attribute for scope in pom.xml

parent 519276d9
No related branches found
No related tags found
No related merge requests found
...@@ -170,6 +170,7 @@ ...@@ -170,6 +170,7 @@
<groupId>javax.websocket</groupId> <groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId> <artifactId>javax.websocket-api</artifactId>
<version>1.1</version> <version>1.1</version>
<scope>provided</scope>
</dependency> </dependency>
<!-- gson --> <!-- gson -->
......
...@@ -25,8 +25,6 @@ public class AnnotationWebSocketEndpoint { ...@@ -25,8 +25,6 @@ public class AnnotationWebSocketEndpoint {
endpoints.add(this); endpoints.add(this);
// save mapping of session and target id // save mapping of session and target id
targets.put(session.getId(), targetId); targets.put(session.getId(), targetId);
System.out.println(endpoints.toString());
} }
@OnMessage @OnMessage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment