You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by jv...@apache.org on 2002/12/08 00:30:48 UTC

cvs commit: jakarta-turbine-maven/src/test/touchstone-build maven.xml

jvanzyl     2002/12/07 15:30:47

  Modified:    src/test/touchstone-build maven.xml
  Log:
  
  
  Revision  Changes    Path
  1.3       +22 -1     jakarta-turbine-maven/src/test/touchstone-build/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/test/touchstone-build/maven.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- maven.xml	7 Dec 2002 23:12:10 -0000	1.2
  +++ maven.xml	7 Dec 2002 23:30:47 -0000	1.3
  @@ -1,3 +1,24 @@
  -<project>
  +<project 
  +  xmlns:j="jelly:core"
  +  xmlns:u="jelly:util">
  +  
  +  <preGoal name="java:compile">
  +    
  +    <!-- Display maven.dependency.classpath in a nice format. -->
  +    
  +    <property 
  +      name="mavenDependencyClasspath"
  +      refid="maven.dependency.classpath"
  +    />
  +    
  +    <echo>
  +    maven.dependency.classpath:
  +    <u:tokenize var="classpath" delim=":">${mavenDependencyClasspath}</u:tokenize>
  +    <j:forEach var="entry" items="${classpath}">
  +    ${entry}
  +    </j:forEach>
  +    </echo>
   
  +  </preGoal>
  +  
   </project>