You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@depot.apache.org by ni...@apache.org on 2004/07/29 07:04:16 UTC

svn commit: rev 30909 - incubator/depot/trunk/version

Author: nickchalko
Date: Thu Jul 29 00:04:13 2004
New Revision: 30909

Added:
   incubator/depot/trunk/version/build-depend.xml
   incubator/depot/trunk/version/build-get-depot-version-jars.xml
Log:
Renamed ant get file

Added: incubator/depot/trunk/version/build-depend.xml
==============================================================================
--- (empty file)
+++ incubator/depot/trunk/version/build-depend.xml	Thu Jul 29 00:04:13 2004
@@ -0,0 +1,40 @@
+<?xml version="1.0"?>
+<!-- $HeadURL: https://svn.apache.org/repos/asf/incubator/depot/trunk/update/build.xml $ -->
+<!--
+Copyright 2004 The Apache Software Foundation
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+<project name="depot-update-depends" default="export-ant-get">
+
+	<property name="project.name" value="depot-version" />
+
+	<typedef resource="org/krysalis/antworks/importer/antlib.xml"
+	         classpath="${user.home}/.antworks/lib/antworks-importer.jar" />
+
+
+	<property name="antlets.repo" value="http://antworks.sourceforge.net/library/antlets/" />
+	<importer name="init-0.1" href="${antlets.repo}" />
+	<importer name="depot-update-0.1" href="http://cvs.apache.org/~nickchalko/SNAPSHOTS/" />
+
+
+	<repository id="maven" url="http://www.ibiblio.org/maven/" remote="true" />
+	<repository id="nickchalko-sandbox" url="http://cvs.apache.org/~nickchalko/SNAPSHOTS/" remote="true" />
+	<cachedset id="depot-version.dependent.jars">
+		<artifact name="servletapi" ext="jar" version="2.3" repository="maven" />
+		<artifact name="junit" ext="jar" version="3.8" repository="maven" />
+		<artifact name="ant" ext="jar" version="1.6" repository="maven" />
+	</cachedset>
+
+
+</project>

Added: incubator/depot/trunk/version/build-get-depot-version-jars.xml
==============================================================================
--- (empty file)
+++ incubator/depot/trunk/version/build-get-depot-version-jars.xml	Thu Jul 29 00:04:13 2004
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--$Id: $-->
+<!--This is a autogenerated file designed to be checked in to Source Control-->
+<project default="get-all" name="">
+	<property name="depot.home" value="${user.home}/.apache.depot" />
+	<property name="repository.dir" value="${depot.home}/local-repository" />
+	<fileset id="depot-version.dependent.jars.fileset" dir="${repository.dir}">
+		<include name="servletapi/jars/servletapi-2.3.jar" />
+		<include name="junit/jars/junit-3.8.jar" />				
+		<include name="ant/jars/ant-1.6.1.jar" />
+	</fileset>
+	<target name="get-all"
+	        depends="get-servletapi,get-junit,get-ant"/>
+	<target name="get-servletapi">
+		<mkdir dir="${repository.dir}/servletapi/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/servletapi/jars/servletapi-2.3.jar"
+		     src="http://www.ibiblio.org/maven/servletapi/jars/servletapi-2.3.jar" />
+	</target>
+	<target name="get-junit">
+		<mkdir dir="${repository.dir}/junit/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/junit/jars/junit-3.8.jar"
+		     src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.jar" />
+	</target>
+	<target name="get-ant">
+		<mkdir dir="${repository.dir}/ant/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/ant/jars/ant-1.6.1.jar"
+		     src="http://www.ibiblio.org/maven/ant/jars/ant-1.6.1.jar" />
+	</target>		
+</project>