You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by js...@apache.org on 2003/01/21 18:30:44 UTC

cvs commit: jakarta-commons-sandbox/jelly/jelly-tags/html maven.xml

jstrachan    2003/01/21 09:30:44

  Modified:    jelly/jelly-tags/html maven.xml
  Log:
  Moved the maven goals over from the main build to here.
  
  Revision  Changes    Path
  1.4       +24 -4     jakarta-commons-sandbox/jelly/jelly-tags/html/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/jelly-tags/html/maven.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- maven.xml	14 Jan 2003 18:43:41 -0000	1.3
  +++ maven.xml	21 Jan 2003 17:30:43 -0000	1.4
  @@ -1,8 +1,7 @@
   <project default="java:jar">
   
  -	<!-- define jelly task --> 
  -		
  -	<goal name="set-classpath" prereqs="java:compile, test:compile"> 
  +	<!-- define the classpath --> 
  +	<goal name="create-classpath" prereqs="java:compile,test:compile"> 
   		<path id="test.classpath"> 
   			<pathelement path="${maven.build.dest}"/> 
   			<pathelement path="target/classes"/> 
  @@ -11,7 +10,28 @@
   		</path> 
   	</goal> 
   
  -  <goal name="demo:radio2pda" prereqs="set-classpath" 
  +	<!-- demos-->
  +	
  +  <goal name="demo:html" prereqs="create-classpath"
  +		description="Runs the example of parsing HTML with jelly">
  +
  +    <java classname="org.apache.commons.jelly.Jelly" fork="yes">
  +      <classpath refid="test.classpath"/>
  +      <arg value="src/test/org/apache/commons/jelly/html/example.jelly"/>
  +    </java>
  +  </goal>
  +
  +  <goal name="demo:text" prereqs="create-classpath"
  +		description="Runs the example of parsing text with tags via jelly">
  +
  +    <java classname="org.apache.commons.jelly.Jelly" fork="yes">
  +      <classpath refid="test.classpath"/>
  +      <arg value="src/test/org/apache/commons/jelly/html/example2.jelly"/>
  +    </java>
  +  </goal>
  +
  +
  +  <goal name="demo:radio2pda" prereqs="create-classpath" 
     	description="Converts the HTML news output of Radio Userland to simple HTML viewable on a PDA"> 
       <java classname="org.apache.commons.jelly.Jelly" fork="yes"> 
         <classpath refid="test.classpath"/> 
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>