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/03/04 01:32:48 UTC

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

dion        2003/03/03 16:32:48

  Modified:    src/plugins-build/repository/src/plugin-resources
                        repository-audit.xml
               src/plugins-build/repository plugin.jelly
  Log:
  Add webwork, fix bits and pieces. update status
  
  Revision  Changes    Path
  1.11      +13 -7     jakarta-turbine-maven/src/plugins-build/repository/src/plugin-resources/repository-audit.xml
  
  Index: repository-audit.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/repository/src/plugin-resources/repository-audit.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- repository-audit.xml	3 Mar 2003 23:51:52 -0000	1.10
  +++ repository-audit.xml	4 Mar 2003 00:32:47 -0000	1.11
  @@ -3,20 +3,19 @@
        Things to do:
          * DONE - create license directories on ibiblio via jelly
          * DONE - upload licenses available via http via jelly
  -       * WIP - ensure all versions on ibiblio are covered by licenses (up to pull-parser)
  -       * remove violations if any still exist
  +       * DONE - ensure all versions on ibiblio are covered by licenses (up to statcvs)
  +       * WIP - remove violations if any still exist (xsdlib*)
          * set up pom directories for all hosted groups
          * upload poms for all artifacts
          * Find the following projects:
            * excalibur-mpool - asl
            * jsr94 - I can't find the download
            * jstyle - used to be http://www.redrival.com/greenrd/java/jstyle
  -         * spirit-cache - I can't make head nor tails of the spirit-soft download
  -           section
            * struts-menu - no license on file. Have contacted authors
            * textarea - looks like it used to be on sf.net?
            * download msv licenses and place on repo
          * Remove javadoc directory once agreement reached
  +       * deploy source code to ibiblio for all GPL licensed projects
          
   Template:     
     <project>
  @@ -1455,14 +1454,14 @@
       <project>
         <groupId>velocity-dvsl</groupId>
         <url>http://jakarta.apache.org/velocity/dvsl/</url>
  -      <file>http://jakarta.apache.org/velocity/dvsl/license.html</file>
  +      <file>http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-velocity-dvsl/docs/license.html</file>
         <comments>ASL</comments>
       </project>
   
       <project>
         <groupId>velocity</groupId>
         <url>http://jakarta.apache.org/velocity/</url>
  -      <file>http://jakarta.apache.org/velocity/license.html</file>
  +      <file>http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-velocity/LICENSE.txt</file>
         <comments>ASL</comments>
       </project>
   
  @@ -1476,7 +1475,7 @@
     <project>
       <groupId>webmacro</groupId>
       <url>http://sourceforge.net/projects/webmacro/</url>
  -    <file>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/webmacro/webmacro/LICENSE</file>
  +    <file>http://www.webmacro.org/WebMacroLicense</file>
       <comments>Dual licensing : Apache Style and GPL</comments>
     </project>
     
  @@ -1485,6 +1484,13 @@
       <url>http://webtest.canoo.com/webtest/manual/WebTestHome.html</url>
       <file>http://webtest.canoo.com/webtest/manual/license.html</file>
       <comments>BSD / Apache license (so it seems)</comments>
  +  </project>
  +
  +  <project>
  +    <groupId>webwork</groupId>
  +    <url>http://sourceforge.net/projects/opensymphony</url>
  +    <file>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/opensymphony/webwork/src/docs/manual/license.txt</file>
  +    <comments>BSD</comments>
     </project>
   
     <project>
  
  
  
  1.6       +3 -2      jakarta-turbine-maven/src/plugins-build/repository/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/repository/plugin.jelly,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- plugin.jelly	27 Feb 2003 15:29:50 -0000	1.5
  +++ plugin.jelly	4 Mar 2003 00:32:48 -0000	1.6
  @@ -65,7 +65,7 @@
         <!-- set permissions -->
         <echo>Setting permissions and group ownership in ${directory}'</echo>
         <j:set var="command" value="cd ${directory}" />
  -      <j:set var="command" value="${command};chmod -R g+ws *" />
  +      <j:set var="command" value="${command};chmod -R g+s *" />
         <j:set var="command" value="${command};chmod -R a+r *" />
         <j:set var="command" value="${command};chgrp -R maven *" />
         <j:set var="command" value="${command};rm ${groupId}.license" />
  @@ -211,7 +211,8 @@
       <j:set var="command" value="${command};mkdir ${groupId}/jars"/>
       <j:set var="command" value="${command};mkdir ${groupId}/licenses"/>
       <j:set var="command" value="${command};mkdir ${groupId}/poms"/>
  -    <j:set var="command" value="${command};chmod -R g+ws ${groupId}"/>
  +    <j:set var="command" value="${command};chmod g+ws ${groupId}"/>
  +    <j:set var="command" value="${command};chmod -R g+w ${groupId}"/>
       <j:set var="command" value="${command};chmod -R a+r ${groupId}"/>
       <echo>executing '${command}' remotely</echo>
       <repository:exec command="${command}" />