Change the usage hint in the common libs console screen
-------------------------------------------------------

                 Key: GERONIMO-3049
                 URL: https://issues.apache.org/jira/browse/GERONIMO-3049
             Project: Geronimo
          Issue Type: Bug
      Security Level: public (Regular issues)
          Components: console
    Affects Versions: 1.2, 2.0-M4, 2.0-M5
            Reporter: Jay D. McHugh
         Assigned To: Jay D. McHugh
            Priority: Trivial
         Attachments: geronimo-3049.patch

When you click on one of the libraries listed on the common libs page, a usage 
hint pops up.

But, the format of the code to include is old (circa 1.1 days).

Example:

  <environment>
        ...
        <dependencies>
            ...
            <dependency>
                <groupId>activeio</groupId>
                <artifactId>activeio</artifactId>
                <version>2.0-r118</version>
                <type>jar</type>
            </dependency>
       </dependencies>
    </environment>

This should be updated to show the current format (that includes a namespace):

  <dep:environment xmlns="http://geronimo.apache.org/xml/ns/deployment...>
        ...
        <dep:dependencies>
            ...
            <dep:dependency>
                <dep:groupId>activeio</dep:groupId>
                <dep:artifactId>activeio</dep:artifactId>
                <dep:version>2.0-r118</dep:version>
                <dep:type>jar</dep:type>
            </dep:dependency>
       </dep:dependencies>
    </dep:environment>

Not a 'super big' deal, but if someone new to geronimo tries to just copy/paste 
into one of their deployment descriptors, then they will have problems.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to