You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by do...@apache.org on 2002/02/26 17:30:36 UTC

cvs commit: jakarta-turbine-maven bootstrap.deps.list build-bootstrap.xml

dobbs       02/02/26 08:30:36

  Modified:    .        build-bootstrap.xml
  Added:       .        bootstrap.deps.list
  Log:
  adding update-jars to maven's bootstrap
  for those of us who don't have wget
  
  Revision  Changes    Path
  1.16      +28 -0     jakarta-turbine-maven/build-bootstrap.xml
  
  Index: build-bootstrap.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/build-bootstrap.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- build-bootstrap.xml	25 Feb 2002 21:38:31 -0000	1.15
  +++ build-bootstrap.xml	26 Feb 2002 16:30:36 -0000	1.16
  @@ -126,4 +126,32 @@
       <delete dir="${basedir}/bootstrap"/>
   
     </target>
  +
  +  <target
  +    name="update-jars">
  +
  +    <taskdef
  +      name="httpget"
  +      className="org.apache.tdk.task.Get">
  +      <classpath>
  +        <pathelement location="${lib.repo}/tdk.jar"/>
  +      </classpath>
  +    </taskdef>
  +
  +    <!-- If you need proxy support you'll have to manually add:
  +
  +         proxyHost="x"
  +         proxyPort="y"
  +
  +         We'll clean this up but it worked for a user behind a proxy.
  +    -->
  +
  +    <httpget
  +      baseUrl="http://jakarta.apache.org/turbine/jars/"
  +      dest="${lib.repo}"
  +      dependencyFile="bootstrap.deps.list"
  +    />
  +
  +  </target>
  +
   </project>
  
  
  
  1.1                  jakarta-turbine-maven/bootstrap.deps.list
  
  Index: bootstrap.deps.list
  ===================================================================
  stratum-0.1-dev.jar
  bcel.jar
  log4j-1.1.3.jar
  velocity-1.3-dev.jar
  velocity-dvsl-0.40.jar
  dom4j-1.1.jar
  commons-util-0.1-dev.jar
  commons-graph.jar
  commons-beanutils.jar
  commons-collections.jar
  oro.jar
  jakarta-regexp-1.2.jar
  genjar.jar
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: cvs commit: jakarta-turbine-maven bootstrap.deps.list build-bootstrap.xml

Posted by Jason van Zyl <jv...@zenplex.com>.
On Tue, 2002-02-26 at 11:54, Pete Kazmier wrote:
> I'm not sure if this should be done.  Hasn't org.apache.tdk.task.Get
> been moved into Maven?  Chicken before the egg problem, no?

It shouldn't be done.

 
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
-- 
jvz.

Jason van Zyl
jvanzyl@apache.org

http://tambora.zenplex.org


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: cvs commit: jakarta-turbine-maven bootstrap.deps.list build-bootstrap.xml

Posted by Eric Dobbs <er...@dobbse.net>.
On Tuesday, February 26, 2002, at 09:54  AM, Pete Kazmier wrote:

> I'm not sure if this should be done.  Hasn't org.apache.tdk.task.Get
> been moved into Maven?  Chicken before the egg problem, no?

fixed.  Thanks for catching that.
-Eric

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: cvs commit: jakarta-turbine-maven bootstrap.deps.list build-bootstrap.xml

Posted by Pete Kazmier <pe...@kazmier.com>.
I'm not sure if this should be done.  Hasn't org.apache.tdk.task.Get
been moved into Maven?  Chicken before the egg problem, no?


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>