Uploaded image for project: 'JBoss Enterprise Application Platform'
  1. JBoss Enterprise Application Platform
  2. JBEAP-4111

Dev guide - Websockets - maven dependency is incorrect

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Critical Critical
    • 7.0.0.ER7
    • 7.0.0.ER7
    • Documentation
    • 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>
      

              sgilda_jira Sande Gilda (Inactive)
              rhatlapa@redhat.com Radim Hatlapatka (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: