From: stephane m. <ste...@us...> - 2002-12-13 04:32:47
|
stephanemor 02/12/12 20:32:46 Added: sdocbook maven.xml Log: Added plugin:install, plugin:deploy, etc. Revision Changes Path 1.1 maven-plugins/sdocbook/maven.xml Index: maven.xml =================================================================== <project default="plugin" xmlns:j="jelly:core" xmlns:m="maven"> <goal name="plugin"> <j:if test="${sourcesPresent == 'true'}"> <attainGoal name="java:compile"/> <attainGoal name="test:test"/> </j:if> <property name="assemblyDir" value="target/assemblyDir"/> <mkdir dir="${assemblyDir}"/> <copy todir="${assemblyDir}"> <fileset dir="."> <exclude name="target/**"/> <exclude name="src/**"/> <exclude name="maven.xml"/> <exclude name="maven.log"/> </fileset> </copy> <j:if test="${sourcesPresent == 'true'}"> <copy todir="${assemblyDir}"> <fileset dir="target/classes"/> </copy> </j:if> <jar jarfile="${maven.build.dir}/${maven.final.name}.jar"> <fileset dir="${assemblyDir}"/> </jar> <copy file="${maven.build.dir}/${maven.final.name}.jar" todir="${maven.repo.local}/maven/jars" /> </goal> <goal name="plugin:install" prereqs="plugin" description="Install the plugin in Maven's plugins dir"> <copy file="${maven.build.dir}/${maven.final.name}.jar" todir="${maven.home}/plugins" /> </goal> <goal name="plugin:deploy" prereqs="plugin" description="Install an unpacked version of the plugin"> <mkdir dir="${maven.home}/plugins/${maven.final.name}"/> <unzip src="${maven.build.dir}/${maven.final.name}.jar" dest="${maven.home}/plugins/${maven.final.name}" /> </goal> <goal name="plugin:undeploy" description="Delete the deployed version of the plugin"> <delete dir="${maven.home}/plugins/${maven.final.name}"/> </goal> <goal name="plugin:uninstall" description="Delete all versions of the plugin"> <attainGoal name="plugin:undeploy"/> <delete> <fileset dir="${maven.home}/plugins/" includes="${maven.final.name}.jar"/> </delete> </goal> </project> |
From: Siegfried G. <wd...@us...> - 2003-10-17 18:30:18
|
wdsgoe 03/10/17 11:26:51 Modified: sdocbook maven.xml Log: Copying the plugin-resources Revision Changes Path 1.2 +4 -0 maven-plugins/sdocbook/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sdocbook/maven.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- maven.xml 13 Dec 2002 04:32:46 -0000 1.1 +++ maven.xml 17 Oct 2003 18:26:50 -0000 1.2 @@ -23,6 +23,10 @@ </fileset> </copy> + <copy todir="${assemblyDir}/plugin-resources"> + <fileset dir="src/plugin-resources"/> + </copy> + <j:if test="${sourcesPresent == 'true'}"> <copy todir="${assemblyDir}"> <fileset dir="target/classes"/> |
From: Per O. <per...@us...> - 2004-04-12 09:54:42
|
perolesen 04/04/12 02:40:57 Modified: sdocbook maven.xml Log: added pregoal on xdoc to do faq processing first Revision Changes Path 1.3 +6 -3 maven-plugins/sdocbook/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sdocbook/maven.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- maven.xml 17 Oct 2003 18:26:50 -0000 1.2 +++ maven.xml 12 Apr 2004 09:40:57 -0000 1.3 @@ -2,9 +2,12 @@ xmlns:j="jelly:core" xmlns:m="maven"> - <goal - name="plugin"> - + <preGoal name="xdoc:jelly-transform"> + <attainGoal name="faq"/> + </preGoal> + + <goal name="plugin"> + <j:if test="${sourcesPresent == 'true'}"> <attainGoal name="java:compile"/> <attainGoal name="test:test"/> |
From: Carlos S. <car...@us...> - 2004-12-11 20:12:00
|
carlossg 04/12/11 12:11:54 Removed: sdocbook maven.xml Log: Removed plugin goals |
From: Carlos S. <car...@us...> - 2005-01-05 22:14:59
|
carlossg 05/01/05 14:14:53 Added: sdocbook maven.xml Removed: sdocbook/xdocs/docbook 4SuiteCVS.pdf HelloWorldArticle.pdf HelloWorldArticle.html 4SuiteCVS.html sdocbook.pdf sdocbook.html emacsandxml.html LoaderDocbook.pdf LoaderDocbook.html emacsandxml.pdf Log: Generate sample docbooks Revision Changes Path 1.5 +5 -84 maven-plugins/sdocbook/maven.xml |