SharedLib dependency incorrectly generated for 2.0.x version of the Geronimo
server
-----------------------------------------------------------------------------------
Key: GERONIMODEVTOOLS-247
URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-247
Project: Geronimo-Devtools
Issue Type: Bug
Affects Versions: 2.0.0
Reporter: Tim McConnell
Assignee: Tim McConnell
Fix For: 2.0.2
The SharedLib dependency is getting created as below in the web.xml, which is
the old 1.1.1 format:
<sys:dependencies>
<sys:dependency>
<sys:groupId>geronimo</sys:groupId>
<sys:artifactId>sharedlib</sys:artifactId>
<sys:type>car</sys:type>
</sys:dependency>
</sys:dependencies>
It should be as below for the 2.0.x format:
<sys:dependencies>
<sys:dependency>
<sys:groupId>org.apache.geronimo.configs</sys:groupId>
<sys:artifactId>sharedlib</sys:artifactId>
<sys:type>car</sys:type>
</sys:dependency>
</sys:dependencies>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.