Documentation problem: description of how to share assemble descriptors is wrong
--------------------------------------------------------------------------------
Key: MASSEMBLY-519
URL: http://jira.codehaus.org/browse/MASSEMBLY-519
Project: Maven 2.x Assembly Plugin
Issue Type: Bug
Affects Versions: 2.2
Reporter: Thomas Arand
The page
http://maven.apache.org/plugins/maven-assembly-plugin/examples/sharing-descriptors.html
describes the way to access the shared descriptor like follows:
<configuration>
<!-- This is where we use our shared assembly descriptor -->
<descriptors>
<descriptor>myassembly.xml</descriptor>
</descriptors>
</configuration>
Due to the layout of the shared assembly descriptor project (myassembly.xml is
stored in src/main/resources/assemblies/) this is wrong. It must be
<configuration>
<!-- This is where we use our shared assembly descriptor -->
<descriptors>
<descriptor>assemblies/myassembly.xml</descriptor>
</descriptors>
</configuration>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira