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 2003/01/28 06:45:14 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/sea plugin.jelly

jvanzyl     2003/01/27 21:45:14

  Modified:    src/plugins-build/sea plugin.jelly
  Log:
  o make sure the .sh files remain executable.
  
  Revision  Changes    Path
  1.3       +11 -4     jakarta-turbine-maven/src/plugins-build/sea/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/sea/plugin.jelly,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- plugin.jelly	28 Jan 2003 05:24:08 -0000	1.2
  +++ plugin.jelly	28 Jan 2003 05:45:14 -0000	1.3
  @@ -41,13 +41,20 @@
       <define:tag name="create">
       
         <mkdir dir="${maven.build.dir}"/>
  -    
  +
         <tar 
  -        longfile="gnu" 
  +        longfile="gnu"
           tarfile="${maven.build.dir}/${seaName}.tar">
  -        <tarfileset dir="${sourceDirectory}"/>
  -      </tar>
   
  +        <tarfileset dir="${sourceDirectory}" mode="755">
  +          <include name="**/*.sh"/>
  +        </tarfileset>
  +        <tarfileset dir="${sourceDirectory}">
  +          <include name="**/**"/>
  +          <exclude name="**/*.sh"/>
  +        </tarfileset>
  +      </tar> 
  +      
         <gzip 
           zipfile="${maven.build.dir}/${seaName}.tar.gz"
           src="${maven.build.dir}/${seaName}.tar"