You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Paul McMahan (JIRA)" <ji...@apache.org> on 2007/03/30 20:28:25 UTC

[jira] Commented: (GERONIMO-3049) Change the usage hint in the common libs console screen

    [ https://issues.apache.org/jira/browse/GERONIMO-3049?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12485601 ] 

Paul McMahan commented on GERONIMO-3049:
----------------------------------------

my eyeballs got crossed a little bit when I stared at this :-)  Is the net effect of this JIRA/patch just to explicitly define the xmlns?  or does the current usage info provided in the console not conform to the deployment schema?

> 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.