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/07 08:16:12 UTC

svn commit: rev 10559 - in incubator/depot/trunk/update/src: antlet sample/CachedResourceSet sample/export

Author: nickchalko
Date: Fri May  7 01:16:11 2004
New Revision: 10559

Added:
   incubator/depot/trunk/update/src/antlet/   (props changed)
   incubator/depot/trunk/update/src/antlet/xbuild.xml
   incubator/depot/trunk/update/src/sample/export/   (props changed)
   incubator/depot/trunk/update/src/sample/export/build.xml
Modified:
   incubator/depot/trunk/update/src/sample/CachedResourceSet/   (props changed)
   incubator/depot/trunk/update/src/sample/CachedResourceSet/build.xml
Log:
Working on antlet.

Added: incubator/depot/trunk/update/src/antlet/xbuild.xml
==============================================================================
--- (empty file)
+++ incubator/depot/trunk/update/src/antlet/xbuild.xml	Fri May  7 01:16:11 2004
@@ -0,0 +1,39 @@
+<?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>
+
+</project>

Modified: incubator/depot/trunk/update/src/sample/CachedResourceSet/build.xml
==============================================================================
--- incubator/depot/trunk/update/src/sample/CachedResourceSet/build.xml	(original)
+++ incubator/depot/trunk/update/src/sample/CachedResourceSet/build.xml	Fri May  7 01:16:11 2004
@@ -24,7 +24,7 @@
 	</path>
 
 	<typedef resource="depot-update-antlib.xml" classpathref="update.classpath" />
-	<repository id="maven" url="http://www.ibiblio.org/maven/" remote="true" />
+	
 
 
 	<cachedset id="jars">

Added: incubator/depot/trunk/update/src/sample/export/build.xml
==============================================================================
--- (empty file)
+++ incubator/depot/trunk/update/src/sample/export/build.xml	Fri May  7 01:16:11 2004
@@ -0,0 +1,38 @@
+<!--
+$Id: build.xml 6966 2004-03-02 07:59:44Z nickchalko $
+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="export-project-set" name="export-sample">
+
+
+	<typedef resource="org/krysalis/antworks/importer/antlib.xml"
+	         classpath="${user.home}/.antworks/lib/antworks-importer.jar" />
+
+	<property name="project.name" value="export-sample" />
+	<property name="project.version" value="0.1-dev-${DSTAMP}" />
+	<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-dev-20040507" />
+
+		
+    <repository id="maven" url="http://www.ibiblio.org/maven/" remote="true" />		
+		
+	<cachedset id="export-sample.dependent.jars">
+		<resource name="regexp" ext="jar" version="1" repository="maven" />
+	</cachedset>
+
+
+
+</project>