Author: ochikvina
Date: 2008-05-27 06:40:19 -0400 (Tue, 27 May 2008)
New Revision: 8349
Modified:
trunk/documentation/guides/GettingStartedGuide/pom.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-336 - paths correction
Modified: trunk/documentation/guides/GettingStartedGuide/pom.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/pom.xml 2008-05-27 10:39:50 UTC (rev
8348)
+++ trunk/documentation/guides/GettingStartedGuide/pom.xml 2008-05-27 10:40:19 UTC (rev
8349)
@@ -11,12 +11,14 @@
<name>Getting_Started_Guide</name>
<build>
+
<plugins>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
<version>2.1.0-200803311251UTC-MPJDOCBOOK-8</version>
<extensions>true</extensions>
+
<dependencies>
<dependency>
<groupId>com.jboss</groupId>
@@ -35,7 +37,9 @@
<version>1.1.0</version>
<type>jdocbook-style</type>
</dependency>
+
</dependencies>
+
<configuration>
<sourceDocumentName>master.xml</sourceDocumentName>
<sourceDirectory>${pom.basedir}/en</sourceDirectory>
@@ -46,32 +50,37 @@
<include>database.zip</include>
</includes>
</imageResource>
- <!--<cssResource>
- <directory>src/main/css</directory>
- </cssResource>-->
+ <cssResource>
+ <directory>${pom.basedir}/${cssdir}</directory>
+ </cssResource>
+
<formats>
<format>
<formatName>pdf</formatName>
-
<stylesheetResource>classpath:/xslt/com/jboss/pdf.xsl</stylesheetResource>
+
<stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/com/jboss/tools/pdf.xsl</stylesheetResource>
<finalName>${pom.name}.pdf</finalName>
</format>
<format>
<formatName>html</formatName>
-
<stylesheetResource>classpath:/xslt/com/jboss/xhtml.xsl</stylesheetResource>
+
<stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/com/jboss/tools/xhtml.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
<format>
<formatName>html_single</formatName>
-
<stylesheetResource>classpath:/xslt/com/jboss/xhtml-single.xsl</stylesheetResource>
+
<stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/com/jboss/tools/xhtml-single.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
<format>
<formatName>eclipse</formatName>
-
<stylesheetResource>classpath:/xslt/com/jboss/eclipse.xsl</stylesheetResource>
+
<stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/com/jboss/tools/eclipse.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
</formats>
+
<options>
+ <useRelativeImageUris>
+ true
+ </useRelativeImageUris>
<xincludeSupported>true</xincludeSupported>
<xmlTransformerType>saxon</xmlTransformerType>
<!-- needed for uri-resolvers; can be ommitted if using
'current' uri scheme -->
@@ -81,9 +90,13 @@
</configuration>
</plugin>
</plugins>
+
</build>
<properties>
+
<stylesdir>../../../documentation/jbosstools-docbook-xslt/src/main/resources/</stylesdir>
+
<cssdir>../../../documentation/jbosstools-jdocbook-style/src/main/com/css/</cssdir>
<translation>en-US</translation>
- </properties>
+ </properties>
+
</project>