[weld-issues] [JBoss JIRA] Created: (WELD-509) weld-parent POM should specify maven standard directory for docbook folder
Lincoln Baxter III (JIRA)
jira-events at lists.jboss.org
Tue Apr 27 15:35:10 EDT 2010
weld-parent POM should specify maven standard directory for docbook folder
--------------------------------------------------------------------------
Key: WELD-509
URL: https://jira.jboss.org/jira/browse/WELD-509
Project: Weld
Issue Type: Task
Components: Infrastructure
Reporter: Lincoln Baxter III
To follow the Maven way, we want to put the docbook source in src/main/docbook. However, Weld is configured to put the sources right at the root.
current Weld way: docs/reference/en-US/*.xml
the way it should be: docs/reference/src/main/docbook/en-US/*.xml
The <sourceDirectory> element needs to be added:
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
...
<configuration>
<sourceDirectory>${project.basedir}/src/main/docbook</sourceDirectory>
<sourceDocumentName>master.xml</sourceDocumentName>
<masterTranslation>en-US</masterTranslation>
...
</configuration>
...
</plugin>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the weld-issues
mailing list