[jbpm-commits] JBoss JBPM SVN: r3045 - in jbpm4/trunk: modules/api and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Nov 24 04:24:16 EST 2008


Author: tom.baeyens at jboss.com
Date: 2008-11-24 04:24:16 -0500 (Mon, 24 Nov 2008)
New Revision: 3045

Modified:
   jbpm4/trunk/build.xml
   jbpm4/trunk/modules/api/pom.xml
Log:
switched to relative paths for the xsddoc ant task

Modified: jbpm4/trunk/build.xml
===================================================================
--- jbpm4/trunk/build.xml	2008-11-22 09:36:41 UTC (rev 3044)
+++ jbpm4/trunk/build.xml	2008-11-24 09:24:16 UTC (rev 3045)
@@ -57,12 +57,12 @@
     </antcall>
   </target>
 
-  <target name="jpdlxsddoc">
-    <exec executable="cmd" dir="modules/jpdl">
+  <target name="schemadocs">
+    <exec executable="cmd" dir="modules/api">
       <arg line="/C mvn package" />
     </exec>
     <antcall target="show.html">
-      <param name="page" value="modules/jpdl/target/doc/jpdlxsd/index.html"/>
+      <param name="page" value="modules/api/target/doc/schemadoc/index.html"/>
     </antcall>
   </target>
     

Modified: jbpm4/trunk/modules/api/pom.xml
===================================================================
--- jbpm4/trunk/modules/api/pom.xml	2008-11-22 09:36:41 UTC (rev 3044)
+++ jbpm4/trunk/modules/api/pom.xml	2008-11-24 09:24:16 UTC (rev 3045)
@@ -57,10 +57,11 @@
             </goals>
             <configuration>
               <tasks>
+                <echo message="basedir: ${basedir}" />
                 <taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task" classpathref="maven.plugin.classpath" />
-                <mkdir dir="${basedir}/target/doc/schemadoc" />
-                <xsddoc out="${basedir}/target/doc/schemadoc" title="jBPM 4 Schema's" verbose="false">
-                  <fileset dir="${basedir}/src/main/resources" />
+                <mkdir dir="target/doc/schemadoc" />
+                <xsddoc out="target/doc/schemadoc" title="jBPM 4 Schema's" verbose="false">
+                  <fileset dir="src/main/resources" />
                 </xsddoc>
               </tasks>
             </configuration>




More information about the jbpm-commits mailing list