-
Bug
-
Resolution: Done
-
Critical
-
7.0.0.ER7
-
None
In development guide (revision 8001643) in Chapter 14. Creating WebSocket Applications, Maven Dependency Example contains typo, the group id and artifact id should be in camel case groupId, artifactId (note the capital I) =>
<dependency> <groupid>org.jboss.spec.javax.websocket</groupid> <artifactid>jboss-websocket-api_1.0_spec</artifactid> <version>1.0.0.Final</version> <scope>provided</scope> </dependency>
should be replaced by
<dependency> <groupId>org.jboss.spec.javax.websocket</groupId> <artifactId>jboss-websocket-api_1.0_spec</artifactId> <version>1.0.0.Final</version> <scope>provided</scope> </dependency>