You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by dg...@apache.org on 2004/04/03 23:19:14 UTC

cvs commit: jakarta-commons/validator maven.xml

dgraham     2004/04/03 13:19:14

  Modified:    validator maven.xml
  Log:
  Simplified copying validator dtd files.
  
  Revision  Changes    Path
  1.5       +9 -11     jakarta-commons/validator/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/validator/maven.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- maven.xml	29 Feb 2004 09:48:28 -0000	1.4
  +++ maven.xml	3 Apr 2004 21:19:14 -0000	1.5
  @@ -13,6 +13,7 @@
      See the License for the specific language governing permissions and
      limitations under the License.
   -->
  +
   <project default="java:jar">
   
     <preGoal name="xdoc:jelly-transform">
  @@ -21,25 +22,22 @@
   
     <postGoal name="java:compile">
       
  -    <copy    todir="${maven.build.dir}/classes/">
  +    <copy todir="${maven.build.dir}/classes/">
         <fileset dir="${pom.build.sourceDirectory}"
             excludes="**/*.java"/>
       </copy>
   
  -    <copy    todir="${maven.build.dir}/classes/org/apache/commons/validator/resources/"
  -              file="${basedir}/conf/share/validator_1_0.dtd"/>
  -
  -    <copy    todir="${maven.build.dir}/classes/org/apache/commons/validator/resources/"
  -              file="${basedir}/conf/share/validator_1_0_1.dtd"/>
  -
  -    <copy    todir="${maven.build.dir}/classes/org/apache/commons/validator/resources/"
  -              file="${basedir}/conf/share/validator_1_1.dtd"/>
  +    <copy todir="${maven.build.dir}/classes/org/apache/commons/validator/resources/">
  +      <fileset dir="${basedir}/conf/share"
  +          includes="validator*.dtd"/>
  +    </copy>
   
  -    <copy    todir="${maven.build.dir}/classes/">
  +    <copy todir="${maven.build.dir}/classes/">
         <fileset dir="${javascript.home}"
             includes="**/*.js"/>
       </copy>
   
     </postGoal>
   
  -</project>
  \ No newline at end of file
  +</project>
  +
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-commons/validator maven.xml

Posted by David Graham <gr...@yahoo.com>.
I was wondering that myself this weekend but chose the path of least
resistance when trying to get Validator building properly again.  Patches
are welcome.

David

--- dion@multitask.com.au wrote:
> Is there a reason we can't use the <resources> element to do this?
> 
> --
> dIon Gillard, Multitask Consulting
> 
> 
> 
> dgraham@apache.org wrote on 04/04/2004 07:19:14 AM:
> 
> > dgraham     2004/04/03 13:19:14
> > 
> >   Modified:    validator maven.xml
> >   Log:
> >   Simplified copying validator dtd files.
> > 
> >   Revision  Changes    Path
> >   1.5       +9 -11     jakarta-commons/validator/maven.xml
> > 
> >   Index: maven.xml
> >   ===================================================================
> >   RCS file: /home/cvs/jakarta-commons/validator/maven.xml,v
> >   retrieving revision 1.4
> >   retrieving revision 1.5
> >   diff -u -r1.4 -r1.5
> >   --- maven.xml   29 Feb 2004 09:48:28 -0000   1.4
> >   +++ maven.xml   3 Apr 2004 21:19:14 -0000   1.5
> >   @@ -13,6 +13,7 @@
> >       See the License for the specific language governing permissions 
> and
> >       limitations under the License.
> >    -->
> >   +
> >    <project default="java:jar">
> > 
> >      <preGoal name="xdoc:jelly-transform">
> >   @@ -21,25 +22,22 @@
> > 
> >      <postGoal name="java:compile">
> > 
> >   -    <copy    todir="${maven.build.dir}/classes/">
> >   +    <copy todir="${maven.build.dir}/classes/">
> >          <fileset dir="${pom.build.sourceDirectory}"
> >              excludes="**/*.java"/>
> >        </copy>
> > 
> >   -    <copy    todir="${maven.build.dir}
> > /classes/org/apache/commons/validator/resources/"
> >   -              file="${basedir}/conf/share/validator_1_0.dtd"/>
> >   -
> >   -    <copy    todir="${maven.build.dir}
> > /classes/org/apache/commons/validator/resources/"
> >   -              file="${basedir}/conf/share/validator_1_0_1.dtd"/>
> >   -
> >   -    <copy    todir="${maven.build.dir}
> > /classes/org/apache/commons/validator/resources/"
> >   -              file="${basedir}/conf/share/validator_1_1.dtd"/>
> >   +    <copy todir="${maven.build.dir}
> > /classes/org/apache/commons/validator/resources/">
> >   +      <fileset dir="${basedir}/conf/share"
> >   +          includes="validator*.dtd"/>
> >   +    </copy>
> > 
> >   -    <copy    todir="${maven.build.dir}/classes/">
> >   +    <copy todir="${maven.build.dir}/classes/">
> >          <fileset dir="${javascript.home}"
> >              includes="**/*.js"/>
> >        </copy>
> > 
> >      </postGoal>
> > 
> >   -</project>
> >   \ No newline at end of file
> >   +</project>
> >   +
> > 
> > 
> > 
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: commons-dev-help@jakarta.apache.org
> > 
> 


__________________________________
Do you Yahoo!?
Yahoo! Small Business $15K Web Design Giveaway 
http://promotions.yahoo.com/design_giveaway/

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-commons/validator maven.xml

Posted by di...@multitask.com.au.
Is there a reason we can't use the <resources> element to do this?

--
dIon Gillard, Multitask Consulting



dgraham@apache.org wrote on 04/04/2004 07:19:14 AM:

> dgraham     2004/04/03 13:19:14
> 
>   Modified:    validator maven.xml
>   Log:
>   Simplified copying validator dtd files.
> 
>   Revision  Changes    Path
>   1.5       +9 -11     jakarta-commons/validator/maven.xml
> 
>   Index: maven.xml
>   ===================================================================
>   RCS file: /home/cvs/jakarta-commons/validator/maven.xml,v
>   retrieving revision 1.4
>   retrieving revision 1.5
>   diff -u -r1.4 -r1.5
>   --- maven.xml   29 Feb 2004 09:48:28 -0000   1.4
>   +++ maven.xml   3 Apr 2004 21:19:14 -0000   1.5
>   @@ -13,6 +13,7 @@
>       See the License for the specific language governing permissions 
and
>       limitations under the License.
>    -->
>   +
>    <project default="java:jar">
> 
>      <preGoal name="xdoc:jelly-transform">
>   @@ -21,25 +22,22 @@
> 
>      <postGoal name="java:compile">
> 
>   -    <copy    todir="${maven.build.dir}/classes/">
>   +    <copy todir="${maven.build.dir}/classes/">
>          <fileset dir="${pom.build.sourceDirectory}"
>              excludes="**/*.java"/>
>        </copy>
> 
>   -    <copy    todir="${maven.build.dir}
> /classes/org/apache/commons/validator/resources/"
>   -              file="${basedir}/conf/share/validator_1_0.dtd"/>
>   -
>   -    <copy    todir="${maven.build.dir}
> /classes/org/apache/commons/validator/resources/"
>   -              file="${basedir}/conf/share/validator_1_0_1.dtd"/>
>   -
>   -    <copy    todir="${maven.build.dir}
> /classes/org/apache/commons/validator/resources/"
>   -              file="${basedir}/conf/share/validator_1_1.dtd"/>
>   +    <copy todir="${maven.build.dir}
> /classes/org/apache/commons/validator/resources/">
>   +      <fileset dir="${basedir}/conf/share"
>   +          includes="validator*.dtd"/>
>   +    </copy>
> 
>   -    <copy    todir="${maven.build.dir}/classes/">
>   +    <copy todir="${maven.build.dir}/classes/">
>          <fileset dir="${javascript.home}"
>              includes="**/*.js"/>
>        </copy>
> 
>      </postGoal>
> 
>   -</project>
>   \ No newline at end of file
>   +</project>
>   +
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: commons-dev-help@jakarta.apache.org
>