You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by bw...@apache.org on 2004/01/15 23:06:32 UTC

cvs commit: maven-plugins/docbook plugin.jelly

bwalding    2004/01/15 14:06:32

  Modified:    docbook  plugin.jelly
  Log:
  Removed erroneous code
  
  Revision  Changes    Path
  1.8       +6 -46     maven-plugins/docbook/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/docbook/plugin.jelly,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- plugin.jelly	15 Jan 2004 14:25:48 -0000	1.7
  +++ plugin.jelly	15 Jan 2004 22:06:32 -0000	1.8
  @@ -42,24 +42,21 @@
     
     
   	<goal name="docbook:pdf" description="Compile reference documentation to pdf">
  -		<j:set var="basedir" value="d:/data/dataforge/dataforge-engine"/>
   		<j:useBean class="org.apache.maven.util.ResourceBean" var="resourceTool"/>
   		<j:set var="fopdf" value="${resourceTool.findResource('plugin-resources/styles/fopdf.xsl')}"/>
         	<ant:java classname="com.icl.saxon.StyleSheet" fork="true" dir="${basedir}/src/reference">
   			<ant:classpath>
   				<pathelement location="${plugin.getDependencyPath('xalan')}"/>
  -      			<pathelement location="${plugin.getDependencyPath('fop')}"/>
         			<pathelement location="${plugin.getDependencyPath('commons-logging')}"/>
  -				<pathelement location="${plugin.getDependencyPath('avalon-framework')}"/>
  -      			<pathelement location="${plugin.getDependencyPath('saxon')}"/>
  +				<pathelement location="${plugin.getDependencyPath('saxon')}"/>
         			<pathelement location="${plugin.getDependencyPath('saxon:saxon-dbxsl-extensions')}"/>
         		</ant:classpath>
   			<ant:arg value="-o"/>
  -			<ant:arg value="${basedir}/target/pdf/docbook_fop.tmp"/>
  +			<ant:arg value="${basedir}/target/reference.fop"/>
   			<ant:arg value="${basedir}/src/reference/src/index.xml"/>
   			<ant:arg value="${fopdf}"/>
   		</ant:java>
  -		<ant:java classname="org.apache.fop.apps.Fop" fork="true" dir="${doc.ref.dir}">
  +		<ant:java classname="org.apache.fop.apps.Fop" fork="true" dir="${basedir}/target">
   			<ant:classpath>
   				<pathelement location="${plugin.getDependencyPath('xalan')}"/>
         			<pathelement location="${plugin.getDependencyPath('fop')}"/>
  @@ -68,49 +65,12 @@
         			<pathelement location="${plugin.getDependencyPath('batik')}"/>
         			<pathelement location="${plugin.getDependencyPath('saxon')}"/>
         		</ant:classpath>
  -			<ant:arg value="${basedir}/target/pdf/docbook_fop.tmp"/>
  -			<ant:arg value="${basedir}/target/pdf/hibernate_reference.pdf"/>
  +			<ant:arg value="${basedir}/target/reference.fop"/>
  +			<ant:arg value="${basedir}/target/reference.pdf"/>
   		</ant:java>
   		<ant:delete file="${basedir}/pdf/docbook_fop.tmp"/>
   	</goal>
   
  -	<goal name="docbook:html" description="Compile reference documentation to chunked html">
  -		<mkdir dir="${dist.ref.dir}/html/"/>
  -		<ant:java classname="com.icl.saxon.StyleSheet" fork="true" dir="${dist.ref.dir}/html/">
  -			<ant:classpath>
  -				<ant:fileset dir="${basedir}/${doc.ref.dir}/lib">
  -					<ant:include name="**/*.jar"/>
  -				</ant:fileset>
  -			</ant:classpath>
  -			<ant:arg value="${basedir}/${doc.ref.dir}/src/index.xml"/>
  -			<ant:arg value="${basedir}/${doc.ref.dir}/styles/html_chunk.xsl"/>
  -		</ant:java>
  -	</goal>
  -
  -	<goal name="docbook:htmlsingle" description="Compile reference documentation to single html">
  -		<ant:java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.dir}">
  -			<ant:classpath>
  -				<fileset dir="${basedir}/${doc.dir}/reference/lib">
  -					<include name="**/*.jar"/>
  -				</fileset>
  -			</ant:classpath>
  -			<ant:arg value="-o"/>
  -			<ant:arg value="${basedir}/${dist.ref.dir}/html_single/index.html"/>
  -			<ant:arg value="${basedir}/${doc.ref.dir}/src/index.xml"/>
  -			<ant:arg value="${basedir}/${doc.ref.dir}/styles/html.xsl"/>
  -		</ant:java>
  -	</goal>
  -
  -	<goal name="docbook:refdoc" 
  -		prereqs="docbook:html,docbook:htmlsingle,docbook:pdf" 
  -		description="Generate and copy reference documentation">
  -		<ant:copy todir="${dist.ref.dir}">
  -			<ant:fileset dir="${doc.ref.dir}">
  -				<ant:patternset refid="refdoc.files"/>
  -			</ant:fileset>
  -		</ant:copy>
  -		<ant:mkdir dir="${dist.doc.dir}/other"/>
  -		<ant:copy file="${doc.dir}/other/hibernate-quickref.pdf" todir="${dist.doc.dir}/other"/>
  -	</goal>
  +	
   
   </project>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org