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/05/13 07:44:30 UTC

svn commit: rev 10619 - in incubator/depot/trunk/update/src/antlet: . resources

Author: nickchalko
Date: Thu May 13 00:44:28 2004
New Revision: 10619

Added:
   incubator/depot/trunk/update/src/antlet/xbuild.xml
Removed:
   incubator/depot/trunk/update/src/antlet/resources/cachedset2antget.xsl
Log:
Now uses repository.dir.

Added: incubator/depot/trunk/update/src/antlet/xbuild.xml
==============================================================================
--- (empty file)
+++ incubator/depot/trunk/update/src/antlet/xbuild.xml	Thu May 13 00:44:28 2004
@@ -0,0 +1,47 @@
+<?xml version="1.0"?>
+<!-- $HeadURL: https://svn.apache.org/repos/asf/incubator/depot/trunk/Version/build_antlet.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 default="init" name="depot-update.antlet">
+	<description> Use depot update </description>
+	<import file="usage.xml" />
+
+	<!-- Antlet Specific Properties -->
+	<dirname property="depot-update.antlet.dir" file="${ant.file.depot-update.antlet}" />
+
+
+	<path id="depot-update-antlet.classpath">
+		<fileset dir="${depot-update.antlet.dir}/lib/">
+			<include name="*.jar" />
+		</fileset>
+	</path>
+	<taskdef resource="depot-update-antlib.xml" classpathref="depot-update-antlet.classpath" />
+
+	<target name="export-project-set">
+		<cachedsetexport refid="${project.name}.dependent.jars" toFile="${build.dir}/${project.name}.cached.set.xml" />
+	</target>
+
+	<target name="export-ant-get" depends="export-project-set">
+		<style basedir="${basedir}"
+		       out="${basedir}/build-ant-get.xml"
+		       in="${build.dir}/${project.name}.cached.set.xml"
+		       style="${depot-update.antlet.dir}/resources/cachedset2antget.xsl">
+			<param name="projectName" expression="${project.name}" />
+		</style>
+
+	</target>
+
+</project>