You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/01/06 17:29:31 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/ant project.xml

dion        2003/01/06 08:29:31

  Modified:    src/plugins-build/ant project.xml
  Log:
  Add resources to the jar so that plugin:* goals work from within the plugin directory itself
  
  Revision  Changes    Path
  1.11      +17 -1     jakarta-turbine-maven/src/plugins-build/ant/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/ant/project.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- project.xml	3 Oct 2002 08:17:36 -0000	1.10
  +++ project.xml	6 Jan 2003 16:29:30 -0000	1.11
  @@ -57,7 +57,23 @@
       </developer>
     </developers>
     
  -  <build/>
  +  <build>
  +
  +    <resources>
  +      <resource>
  +        <directory>${basedir}</directory>
  +        <excludes>
  +          <exclude>target/**</exclude>
  +          <exclude>src/**</exclude>
  +          <exclude>maven.xml</exclude>
  +          <exclude>maven.log</exclude>
  +          <exclude>velocity.log</exclude>
  +          <exclude>.cvsignore</exclude>
  +        </excludes>
  +      </resource>
  +    </resources>
  +
  +  </build>
   
   </project>