You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by ju...@apache.org on 2009/03/27 15:52:53 UTC

svn commit: r759164 [5/6] - in /incubator/river/jtsk/trunk: ./ src/ src/com/artima/lookup/util/ src/com/sun/jini/example/browser/ src/com/sun/jini/fiddler/ src/com/sun/jini/mahalo/ src/com/sun/jini/mercury/ src/com/sun/jini/norm/ src/com/sun/jini/outri...

Modified: incubator/river/jtsk/trunk/src/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/build.xml (original)
+++ incubator/river/jtsk/trunk/src/build.xml Fri Mar 27 14:52:49 2009
@@ -1,900 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="src" basedir="." default="all">
-
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## ENVIRONMENT SETTINGS						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<property name="top" location=".."/>
-      
-	<!-- ##							-->
-	<!-- ## Set java-source for use with the javac task:	-->
-	<!-- ##							-->
-      
-	<property name="java-source" value="**/*.java"/>
-	
-	<import file="${top}/build_common.xml"/>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: all							-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="all"
-		description=""
-		depends="compile">
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: clean							-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="clean"
-		description="Removes all files and dirs created by the build."
-		depends="clean.all">
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: this.jars						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="this.jars"
-		description="Generate top-level jars.  Note that some of these jars are
-			     order dependent."
-		depends="jini-core.jar,
-			 jini-ext.jar,
-			 jsk-dl.jar,
-			 jsk-lib.jar,
-			 jsk-resources.jar,
-			 jsk-platform.jar,
-			 jsk-policy.jar,
-			 sun-util.jar,
-			 toolwrappers">
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: toolwrappers						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="toolwrappers"
-		depends="tools-jar,
-			 checkconfigurationfile.jar,
-			 checkser.jar,
-			 classdep.jar,
-			 classserver.jar,
-			 computedigest.jar,
-			 computehttpmdcodebase.jar,
-			 jsk-debug-policy.jar,
-			 jarwrapper.jar,
-			 preferredlistgen.jar,
-			 envcheck.jar">
-	
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: checkconfigurationfile.jar				-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="checkconfigurationfile.jar"
-		depends="setup-all,
-			 start.jar">
-      
-		<delete file="${build.lib}/checkconfigurationfile.jar" quiet="true"/>
-	    
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="-manifest=${src.tools.manifest}/checkconfigurationfile.mf"/>
-			<arg line="${build.lib}/checkconfigurationfile.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	</target>
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: checkser.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="checkser.jar"
-		depends="setup-all">
-      
-		<delete file="${build.lib}/checkser.jar" quiet="true"/>
-	    
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="-manifest=${src.tools.manifest}/checkser.mf"/>
-			<arg line="${build.lib}/checkser.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	</target>
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: classdep.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="classdep.jar"
-		depends="setup-all">
-      
-		<delete file="${build.lib}/classdep.jar" quiet="true"/>
-	    
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="-manifest=${src.tools.manifest}/classdep.mf"/>
-			<arg line="${build.lib}/classdep.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	</target>
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: classserver.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="classserver.jar"
-		depends="setup-all">
-      
-		<delete file="${build.lib}/classserver.jar" quiet="true"/>
-	    
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="${build.lib}/classserver.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	</target>
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: computedigest.jar					-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-
-	<target name="computedigest.jar"
-		depends="setup-all">
-      
-		<delete file="${build.lib}/computedigest.jar" quiet="true"/>
-      
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="-manifest=${src.tools.manifest}/computedigest.mf"/>
-			<arg line="${build.lib}/computedigest.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	</target>
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: computehttpmdcodebase.jar				-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="computehttpmdcodebase.jar"
-		depends="setup-all">
-      
-		<delete file="${build.lib}/computehttpmdcodebase.jar" quiet="true"/>
-      
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="-manifest=${src.tools.manifest}/computehttpmdcodebase.mf"/>
-			<arg line="${build.lib}/computehttpmdcodebase.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	</target>
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jarwrapper.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jarwrapper.jar"
-		depends="setup-all">
-      
-		<delete file="${build.lib}/jarwrapper.jar" quiet="true"/>
-      
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="-manifest=${src.tools.manifest}/jarwrapper.mf"/>
-			<arg line="${build.lib}/jarwrapper.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	</target>
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: preferredlistgen.jar					-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="preferredlistgen.jar"
-		depends="setup-all">
-      
-		<delete file="${build.lib}/preferredlistgen.jar" quiet="true"/>
-      
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="-manifest=${src.tools.manifest}/preferredlistgen.mf"/>
-			<arg line="${build.lib}/preferredlistgen.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	</target>
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: envcheck.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="envcheck.jar"
-		depends="setup-all">
-      
-		<delete file="${build.lib}/envcheck.jar" quiet="true"/>
-      
-		<java classname="com.sun.jini.tool.JarWrapper"
-		      classpath="${build.classes}"
-		      failonerror="true">
-	    
-			<arg line="-manifest=${src.tools.manifest}/envcheck.mf"/>
-			<arg line="${build.lib}/envcheck.jar"/>
-			<arg line="${build.lib}"/>
-			<arg line="tools.jar"/>
-		</java>
-      
-	  <jar destfile="${build.lib}/envcheck.jar" 
-	       update="true"
-	       index="false">
-	      
-	    <fileset	dir="${src.tools.manifest}/tools"
-		      includes="META-INF/services/com.sun.jini.tool.envcheck.Plugin"/>
-	  </jar>
-      
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jini-core.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jini-core.jar"
-		depends="setup-all">
-	
-		<delete file="${build.lib}/jini-core.jar" quiet="true"/>
-      
-		<jar destfile="${build.lib}/jini-core.jar"
-		     index="false">
-      
-		<fileset dir="${build.classes}"
-			 includes="net/jini/core/**"/>
-      
-	  </jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jini-ext.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jini-ext.jar"
-		depends="setup-all">
-	
-		<property name="jini-ext.deps" location="${build.deps}/jini-ext.deps"/>
-		
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${jini-ext.deps}">
-		      
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-		  
-			<arg line="-in com.sun.jini"/>
-			<arg line="-in net.jini"/>
-		  
-			<arg line="-out net.jini.core"/>
-		  
-			<arg line="-prune net.jini.core"/>
-		  
-			<arg path="${build.classes}/net/jini"/>
-			<arg path="${build.classes}/com/sun/jini/discovery"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib}/jini-ext.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib}/jini-ext.jar" 
-		     index="false"
-		     manifest="${src.jini.manifest}/jini-ext.mf">
-		    
-			<fileset dir="${build.classes}"  includesfile="${jini-ext.deps}"/>
-	    
-		</jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jsk-debug-policy.jar					-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jsk-debug-policy.jar"
-		depends="setup-all">
-	
-		<property name="jsk-debug-policy.deps" location="${build.deps}/jsk-debug-policy.deps"/>
-	  
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${jsk-debug-policy.deps}">
-		      
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-			<arg line="${jskprivate.include}"/>
-		  
-			<arg line="-in com.sun.jini.tool"/>
-		  
-			<arg value="com.sun.jini.tool.DebugDynamicPolicyProvider"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib}/jsk-debug-policy.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib}/jsk-debug-policy.jar"
-		     index="false"
-		     manifest="${src.tools.manifest}/jsk-debug-policy.mf">
-		     
-			<fileset dir="${build.classes}"  includesfile="${jsk-debug-policy.deps}"/>
-	    
-		</jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jsk-dl.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jsk-dl.jar"
-		depends="setup-all">
-	
-		<property name="jsk-dl.deps" location="${build.deps}/jsk-dl.deps"/>
-		
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${jsk-dl.deps}">
-		      
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-		  
-			<arg line="-in com.sun.jini"/>
-			<arg line="-in net.jini"/>
-		  
-			<arg line="${jskplatform.exclude}"/>
-		  
-			<arg line="-skip net.jini.lookup.entry.EntryBeans"/>
-		  
-			<arg path="${build.classes}/com/sun/jini/admin"/>
-			<arg path="${build.classes}/com/sun/jini/lease"/>
-			<arg path="${build.classes}/com/sun/jini/proxy"/>
-			<arg path="${build.classes}/net/jini/admin"/>
-			<arg path="${build.classes}/net/jini/entry"/>
-			<arg path="${build.classes}/net/jini/event"/>
-			<arg path="${build.classes}/net/jini/lookup/entry"/>
-			<arg path="${build.classes}/net/jini/space"/>
-		  
-			<arg value="com.sun.jini.jeri.internal.http.HttpParseException"/>
-			<arg value="com.sun.jini.landlord.ConstrainableLandlordLease"/>
-			<arg value="com.sun.jini.landlord.ConstrainableLandlordLeaseMap"/>
-			<arg value="com.sun.jini.landlord.Landlord"/>
-			<arg value="com.sun.jini.landlord.LandlordLease"/>
-			<arg value="com.sun.jini.landlord.LandlordLeaseMap"/>
-			<arg value="com.sun.jini.landlord.LandlordProxyVerifier"/>
-			<arg value="com.sun.jini.logging.Levels"/>
-			<arg value="com.sun.jini.lookup.entry.BasicServiceType"/>
-			<arg value="com.sun.jini.resource.ServiceConfigurationError"/>
-			<arg value="com.sun.jini.start.ServiceProxyAccessor"/>
-		  
-			<arg value="net.jini.discovery.LookupDiscoveryRegistration"/>
-			<arg value="net.jini.discovery.LookupDiscoveryService"/>
-			<arg value="net.jini.discovery.LookupUnmarshalException"/>
-			<arg value="net.jini.discovery.RemoteDiscoveryEvent"/>
-			<arg value="net.jini.lease.LeaseRenewalService"/>
-			<arg value="net.jini.lease.LeaseRenewalSet"/>
-			<arg value="net.jini.lease.LeaseUnmarshalException"/>
-			<arg value="net.jini.lease.RenewalFailureEvent"/>
-			<arg value="net.jini.lookup.DiscoveryAdmin"/>
-			<arg value="net.jini.lookup.ServiceDiscoveryManager$$LookupCacheImpl$$LookupListener_Stub"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib-dl}/jsk-dl.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib-dl}/jsk-dl.jar" 
-		     index="false">
-		    
-			<fileset dir="${build.classes}"  includesfile="${jsk-dl.deps}"/>
-	    
-			<metainf dir="${src.jini.manifest}/jsk-dl/META-INF"/>
-	    
-		</jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jsk-lib.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jsk-lib.jar"
-		depends="setup-all">
-	
-		<property name="jsk-lib.deps" location="${build.deps}/jsk-lib.deps"/>
-		
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${jsk-lib.deps}">
-		      
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-		  
-			<arg line="-in com.sun.jini"/>
-			<arg line="-in net.jini"/>
-		  
-			<arg line="${jskplatform.exclude}"/>
-		  
-			<arg path="${build.classes}/com/sun/jini/admin"/>
-			<arg path="${build.classes}/com/sun/jini/config"/>
-			<arg path="${build.classes}/com/sun/jini/landlord"/>
-			<arg path="${build.classes}/com/sun/jini/lease"/>
-			<arg path="${build.classes}/com/sun/jini/lookup/entry"/>
-			<arg path="${build.classes}/com/sun/jini/proxy"/>
-			<arg path="${build.classes}/com/sun/jini/reliableLog"/>
-			<arg path="${build.classes}/com/sun/jini/resource"/>
-			<arg path="${build.classes}/com/sun/jini/thread"/>
-			<arg path="${build.classes}/net/jini"/>
-				  
-			<arg value="com.sun.jini.logging.Levels"/>
-			<arg value="com.sun.jini.phoenix.ActivationAdmin"/>
-			<arg value="com.sun.jini.start.LifeCycle"/>
-			<arg value="com.sun.jini.start.ServiceProxyAccessor"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib}/jsk-lib.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib}/jsk-lib.jar" 
-		     index="false">
-		    
-		  <fileset dir="${build.classes}"  includesfile="${jsk-lib.deps}"/>
-	    
-		</jar>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the Preferred List	-->
-		<!-- ##				-->
-	    
-		<preferredlistgen>
-	    
-			<plg-elements>
-		  
-				<arg line="-jar"/>
-				<arg path="${build.lib}/jsk-lib.jar"/>
-			
-				<arg line="-cp ${build.classes}"/>
-			
-				<arg line="-api com.sun.jini.start.LifeCycle"/>
-				<arg line="-api com.sun.jini.start.ServiceProxyAccessor"/>
-		  
-			</plg-elements>
-	    
-		</preferredlistgen>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jsk-platform.jar					-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jsk-platform.jar"
-		depends="setup-all">
-	
-		<property name="jsk-platform.deps" location="${build.deps}/jsk-platform.deps"/>
-		
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${jsk-platform.deps}">
-		      
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-		  
-			<arg line="-in com.sun.jini"/>
-			<arg line="-in net.jini"/>
-		  
-			<arg path="${build.classes}/net/jini/activation"/>
-			<arg path="${build.classes}/net/jini/config"/>
-			<arg path="${build.classes}/net/jini/constraint"/>
-			<arg path="${build.classes}/net/jini/core"/>
-			<arg path="${build.classes}/net/jini/export"/>
-			<arg path="${build.classes}/net/jini/id"/>
-			<arg path="${build.classes}/net/jini/iiop"/>
-			<arg path="${build.classes}/net/jini/io"/>
-			<arg path="${build.classes}/net/jini/jeri"/>
-			<arg path="${build.classes}/net/jini/jrmp"/>
-			<arg path="${build.classes}/net/jini/loader"/>
-			<arg path="${build.classes}/net/jini/security"/>
-			<arg path="${build.classes}/net/jini/url"/>
-			<arg value="net.jini.discovery.ConstrainableLookupLocator"/>
-			<arg value="net.jini.discovery.ConstrainableLookupLocatorTrustVerifier"/>
-		  
-			<arg path="${build.classes}/com/sun/jini/discovery"/>
-			<arg value="com.sun.jini.config.ConfigUtil"/>
-			<arg value="com.sun.jini.config.KeyStores"/>
-			<arg value="com.sun.jini.logging.LogManager"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib}/jsk-platform.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib}/jsk-platform.jar" 
-		     index="false"
-		     manifest="${src.jini.manifest}/jsk-platform.mf">
-		     
-		  <fileset dir="${build.classes}"  includesfile="${jsk-platform.deps}"/>
-	    
-		</jar>
-	    
-		<!-- ##					-->
-		<!-- ## Generate the Preferred List	-->
-		<!-- ##					-->
-	    
-		<preferredlistgen>
-	    
-			<plg-elements>
-		  
-				<arg line="-jar"/>
-				<arg path="${build.lib}/jsk-platform.jar"/>
-			
-				<arg line="-cp ${build.classes}"/>
-				<arg line="-api net/jini/activation/-"/>
-				<arg line="-api net/jini/config/-"/>
-				<arg line="-api net/jini/constraint/-"/>
-				<arg line="-api net/jini/core/-"/>
-				<arg line="-api net/jini/export/-"/>
-				<arg line="-api net/jini/id/-"/>
-				<arg line="-api net/jini/iiop/-"/>
-				<arg line="-api net/jini/io/-"/>
-				<arg line="-api net/jini/jeri/-"/>
-				<arg line="-api net/jini/jrmp/-"/>
-				<arg line="-api net/jini/loader/-"/>
-				<arg line="-api net/jini/security/-"/>
-				<arg line="-api net/jini/url/-"/>
-			
-				<arg line="-api net.jini.discovery.ConstrainableLookupLocator"/>
-				<arg line="-api net.jini.discovery.ConstrainableLookupLocatorTrustVerifier"/>
-				<arg line="-api net.jini.security.AuthenticationPermission$AuthenticationPermissionCollection"/>
-				<arg line="-api net.jini.security.GrantPermission$GrantPermissionCollection"/>
-				<arg line="-api com/sun/jini/discovery/"/>
-				<arg line="-api com/sun/jini/discovery/kerberos/-"/>
-				<arg line="-api com/sun/jini/discovery/plaintext/-"/>
-				<arg line="-api com/sun/jini/discovery/ssl/-"/>
-				<arg line="-api com/sun/jini/discovery/x500/-"/>
-				<arg line="-api com.sun.jini.config.ConfigUtil"/>
-				<arg line="-api com.sun.jini.config.KeyStores"/>
-				<arg line="-api com.sun.jini.logging.LogManager"/>
-		  
-			</plg-elements>
-	    
-		</preferredlistgen>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jsk-policy.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jsk-policy.jar"
-		depends="setup-all">
-	
-		<property name="jsk-policy.deps" location="${build.deps}/jsk-policy.deps"/>
-		
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${jsk-policy.deps}">
-		      
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-		  
-			<arg value="net.jini.security.policy.DynamicPolicyProvider"/>
-			<arg value="net.jini.security.policy.PolicyFileProvider"/>
-		  
-			<arg line="-in com.sun.jini"/>
-			<arg line="-in net.jini"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib-ext}/jsk-policy.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib-ext}/jsk-policy.jar" 
-		     index="false">
-		     
-			<fileset dir="${build.classes}"  includesfile="${jsk-policy.deps}"/>
-	    
-		</jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: jsk-resources.jar					-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="jsk-resources.jar"
-		depends="setup-all">
-	
-		<delete file="${build.lib}/jsk-resources.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib}/jsk-resources.jar" 
-		     index="false">
-	    
-			<fileset dir="${src.jini.manifest}/jsk-resources"
-				 includes="META-INF/services/com.sun.jini.discovery.DiscoveryFormatProvider
-					   META-INF/services/java.rmi.server.RMIClassLoaderSpi
-					   META-INF/services/net.jini.security.TrustVerifier
-					   META-INF/services/net.jini.security.IntegrityVerifier
-					   META-INF/services/net.jini.export.ServerContext$$Spi"/>
-		</jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: start.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="start.jar"
-		depends="setup-all">
-      
-		<!-- ##									-->
-		<!-- ## This jar must be built before checkconfigurationfile.jar ,	-->
-		<!-- ## which is why this target is defined here.  This target 		-->
-		<!-- ## simply redirects ant to the actual start.jar target		-->
-		<!-- ## definition.							-->
-		<!-- ##									-->
-	    
-		<ant target="start.jar"
-		     antfile="build.xml"
-		     dir="${src.jini}/com/sun/jini/start"
-		     inheritall="false"
-		     inheritrefs="true"/>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: sun-util.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="sun-util.jar"
-		description=""
-		depends="setup-all">
-	
-		<property name="sun-util.deps" location="${build.deps}/sun-util.deps"/>
-		
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${sun-util.deps}">
-		      
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-		  
-			<arg value="com.sun.jini.discovery.ClientSubjectChecker"/>
-			<arg value="com.sun.jini.fiddler.FiddlerAdmin"/>
-			<arg value="com.sun.jini.outrigger.ConstrainableJavaSpaceAdmin"/>
-			<arg value="com.sun.jini.phoenix.ActivationAdmin"/>
-			<arg value="com.sun.jini.start.LifeCycle"/>
-			<arg value="com.sun.jini.start.ServiceProxyAccessor"/>
-		  
-			<arg line="-in com.sun.jini"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib}/sun-util.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib}/sun-util.jar" 
-		     duplicate="preserve"
-		     index="false">
-		     
-		  <fileset  dir="${build.classes}"  includesfile="${sun-util.deps}"/>
-	    
-		  <fileset  dir="${build.classes}"
-			    includes="com/sun/jini/action/**
-				      com/sun/jini/admin/**
-				      com/sun/jini/collection/**
-				      com/sun/jini/config/**
-				      com/sun/jini/constants/**
-				      com/sun/jini/landlord/**
-				      com/sun/jini/lease/**
-				      com/sun/jini/logging/**
-				      com/sun/jini/lookup/entry/**
-				      com/sun/jini/proxy/**
-				      com/sun/jini/reliableLog/**
-				      com/sun/jini/resource/**
-				      com/sun/jini/system/**
-				      com/sun/jini/thread/**"/>
-		</jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: this.stubs						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="this.stubs" description="Just a dummy target.">
-      
-	</target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/artima/lookup/util/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/artima/lookup/util/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/artima/lookup/util/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/artima/lookup/util/build.xml Fri Mar 27 14:52:49 2009
@@ -1,121 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="util" basedir="." default="all">
-
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## ENVIRONMENT SETTINGS						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<property name="top" location="../../../../.."/>
-      
-	<property name="pkg-path" value="com/artima/lookup/${ant.project.name}"/>
-      
-	<!-- ##							-->
-	<!-- ## Set java-source for use with the javac task:	-->
-	<!-- ##							-->
-      
-	<property name="java-source" value="${pkg-path}/**/*.java"/>
-      
-	<import file="${top}/build_common.xml"/>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: all							-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="all"
-		description=""
-		depends="compile">
-      
-	</target>
-      
-      
-	<!-- ################################################################ -->
-	<!-- ##                                                               -->
-	<!-- ## TARGET: clean                                                 -->
-	<!-- ##                                                               -->
-	<!-- ################################################################ -->
-      
-	<target name="clean"
-		description="Removes all files and dirs created by the build."
-		depends="clean.jre.ext">
-      
-		<delete dir="${build.classes}/${pkg-path}" quiet="true"/>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: this.jars						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="this.jars"
-		depends="serviceui.jar">
-      
-	</target>
-	
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: serviceui.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="serviceui.jar"
-		depends="tools">
-	
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib}/serviceui.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib}/serviceui.jar" 
-		     index="false">
-	    
-			<fileset dir="${build.classes}">
-				<include name="net/jini/lookup/entry/UIDescriptor.class"/>
-				<include name="net/jini/lookup/entry/UIDescriptorBean.class"/>
-				<include name="net/jini/lookup/ui/**"/>
-				<include name="com/artima/lookup/util/**"/>
-			</fileset>
-	    
-		</jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: this.stubs						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="this.stubs" description="Just a dummy target.">
-      
-	</target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/example/browser/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/example/browser/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/example/browser/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/example/browser/build.xml Fri Mar 27 14:52:49 2009
@@ -1,225 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="browser" basedir="." default="all">
-
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## ENVIRONMENT SETTINGS						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<property name="top" location="../../../../../.."/>
-      
-	<property name="pkg-path" value="com/sun/jini/example/${ant.project.name}"/>
-      
-	<!-- ##									-->
-	<!-- ## Set java-source for use with the javac task:			-->
-	<!-- ##									-->
-      
-	<property name="java-source" value="${pkg-path}/**/*.java"/>
-	
-	<import file="${top}/build_common.xml"/>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: all							-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="all"
-		description=""
-		depends="compile">
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: clean							-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="clean"
-		description="Removes all files and dirs created by the build."
-		depends="clean.jre.ext">
-      
-		<delete dir="${build.classes}/${pkg-path}" quiet="true"/>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: this.jars						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="this.jars"
-		depends="browser.jar,
-			 browser-dl.jar">
-	
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: browser.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="browser.jar"
-		depends="tools">
-      
-		<property name="browser.deps" location="${build.deps}/browser.deps"/>
-		
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${browser.deps}">
-		      
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-			<arg line="${jskprivate.include}"/>
-		  
-			<arg line="-in com.sun.jini.example.browser"/>
-		  
-			<arg value="com.sun.jini.example.browser.Browser"/>
-			<arg value="com.sun.jini.example.browser.Browser$$Listener_Stub"/>
-			<arg value="com.sun.jini.example.browser.ServiceEditor$$NotifyReceiver_Stub"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib}/browser.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib}/browser.jar" 
-		     index="false"
-		     manifest="${src.jini.manifest}/browser.mf">
-		     
-			<fileset dir="${build.classes}" includesfile="${browser.deps}"/>
-	    
-		</jar>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: browser-dl.jar						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="browser-dl.jar"
-		depends="tools">
-      
-		<property name="browser-dl.deps" location="${build.deps}/browser-dl.deps"/>
-		
-		<!-- ##			-->
-		<!-- ## Run ClassDep.	-->
-		<!-- ##			-->
-	    
-		<java classname="com.sun.jini.tool.ClassDep"
-		      failonerror="true"
-		      output="${browser-dl.deps}">
-		  
-			<classpath refid="path.classdep"/>
-			<arg value="-cp"/>
-			<arg path="${build.classes}"/>
-			<arg value="-files"/>
-			<arg line="${jskprivate.include}"/>
-		  
-			<arg line="-in com.sun.jini.example.browser"/>
-		  
-			<arg value="com.sun.jini.example.browser.Browser$$Listener_Stub"/>
-			<arg value="com.sun.jini.example.browser.ServiceEditor$$NotifyReceiver_Stub"/>
-			<arg value="com.sun.jini.proxy.BasicProxyTrustVerifier"/>
-	    
-		</java>
-	    
-		<!-- ##				-->
-		<!-- ## Generate the jar file.	-->
-		<!-- ##				-->
-	    
-		<delete file="${build.lib-dl}/browser-dl.jar" quiet="true"/>
-	    
-		<jar destfile="${build.lib-dl}/browser-dl.jar"
-		     index="false">
-		     
-			<fileset dir="${build.classes}" includesfile="${browser-dl.deps}"/>
-		  
-		</jar>
-	    
-		<!-- ##					-->
-		<!-- ## Generate the Preferred List	-->
-		<!-- ##					-->
-      
-		<preferredlistgen>
-	    
-			<plg-elements>
-		  
-				<arg line="-cp"/>
-				<arg path="${build.lib}/jsk-platform.jar"/>
-			  
-				<arg line="-jar"/>
-				<arg path="${build.lib-dl}/browser-dl.jar"/>
-			  
-				<arg line="-jar"/> 
-				<arg path="${build.lib-dl}/jsk-dl.jar"/>
-			  
-				<arg line="-proxy com.sun.jini.example.browser.ServiceEditor$$NotifyReceiver_Stub"/>
-		  
-			</plg-elements>
-	    
-		</preferredlistgen>
-      
-	</target>
-      
-      
-	<!-- ################################################################	-->
-	<!-- ##									-->
-	<!-- ## TARGET: this.stubs						-->
-	<!-- ##									-->
-	<!-- ################################################################	-->
-      
-	<target name="this.stubs"
-		description="Builds the RMI stubs for ${ant.project.name}."
-		depends="compile">
-      
-		<rmic base="${build.classes}" stubversion="1.2">
-	    
-			<classpath refid="path.jini"/>
-	    
-			<include name="com/sun/jini/example/browser/Browser$$Listener.class"/>	
-			<include name="com/sun/jini/example/browser/ServiceEditor$$NotifyReceiver.class"/>
-	    
-		</rmic>
-      
-	</target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/fiddler/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/fiddler/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/fiddler/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/fiddler/build.xml Fri Mar 27 14:52:49 2009
@@ -1,254 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="fiddler" basedir="." default="all">
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## ENVIRONMENT SETTINGS						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <property name="top" location="../../../../.."/>
-
-  <property name="pkg-path" value="com/sun/jini/${ant.project.name}"/>
-
-  <!-- ##								-->
-  <!-- ## Set java-source for use with the javac task:			-->
-  <!-- ##								-->
-
-  <property name="java-source" value="${pkg-path}/**/*.java" />
-
-  <import file="${top}/build_common.xml"/>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: all							-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="all"
-          description=""
-          depends="compile,
-		   this.stubs">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="clean.jre.ext">
-
-    <delete dir="${build.classes}/${pkg-path}" quiet="true"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-	  depends="fiddler.jar,
-		   fiddler-dl.jar">
-
-  </target>
-  
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: fiddler.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="fiddler.jar"
-	  depends="tools">
-  
-    <property name="fiddler.deps" location="${build.deps}/fiddler.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${fiddler.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.fiddler"				/>
-
-      <arg value="com.sun.jini.fiddler.ActivatableFiddlerImpl"		/>
-      <arg value="com.sun.jini.fiddler.FiddlerPermission"		/>
-      <arg value="com.sun.jini.fiddler.FiddlerImpl_Stub"		/>
-      <arg value="com.sun.jini.fiddler.NonActivatableFiddlerImpl"	/>
-      <arg value="com.sun.jini.fiddler.TransientFiddlerImpl"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/fiddler.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/fiddler.jar" 
-         index="false"
-         manifest="${src.jini.manifest}/fiddler.mf">
-         
-      <fileset dir="${build.classes}"  includesfile="${fiddler.deps}" />
-
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-      <arg line="-cp"							/>
-      <arg path="${build.classes}"					/>
-
-      <arg line="-jar"							/>
-      <arg path="${build.lib}/fiddler.jar"				/>
-      
-      <arg line="-default true"   					/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: fiddler-dl.jar					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="fiddler-dl.jar"
-	  depends="tools">
-  
-    <property name="fiddler-dl.deps" location="${build.deps}/fiddler-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${fiddler-dl.deps}">
-      
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.fiddler"				/>
-
-      <arg value="com.sun.jini.fiddler.FiddlerAdminProxy"		/>
-      <arg value="com.sun.jini.fiddler.FiddlerImpl$$FiddlerStatus"	/>
-      <arg value="com.sun.jini.fiddler.FiddlerImpl_Stub"		/>
-      <arg value="com.sun.jini.fiddler.FiddlerLease"			/>
-      <arg value="com.sun.jini.fiddler.FiddlerProxy"			/>
-      <arg value="com.sun.jini.fiddler.FiddlerRegistration"		/>
-      <arg value="com.sun.jini.fiddler.ProxyVerifier"			/>
-      <arg value="com.sun.jini.lookup.entry.BasicServiceType"		/>
-      <arg value="com.sun.jini.reliableLog.LogException"		/>
-      <arg value="net.jini.discovery.RemoteDiscoveryEvent"		/>
-      <arg value="net.jini.lookup.entry.ServiceInfo"			/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib-dl}/fiddler-dl.jar" quiet="true"/>
-
-    <jar destfile="${build.lib-dl}/fiddler-dl.jar" index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${fiddler-dl.deps}" />
-      
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-	<arg line="-cp"							/>
-	<arg path="${build.classes}"					/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/fiddler-dl.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"				/>
-  
-	<arg line="-proxy com.sun.jini.fiddler.FiddlerProxy"		/>
-	<arg line="-proxy com.sun.jini.fiddler.FiddlerAdminProxy"	/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-          description="Builds the RMI stubs for ${ant.project.name}."
-          depends="compile">
-
-    <rmic base="${build.classes}" stubversion="1.2">
-
-      <classpath refid="path.jini" />
-      <include name="com/sun/jini/fiddler/FiddlerImpl.class" />
-
-    </rmic>
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/mahalo/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/mahalo/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/mahalo/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/mahalo/build.xml Fri Mar 27 14:52:49 2009
@@ -1,254 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="mahalo" basedir="." default="all">
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## ENVIRONMENT SETTINGS						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <property name="top" location="../../../../.."/>
-
-  <property name="pkg-path" value="com/sun/jini/${ant.project.name}"/>
-
-  <!-- ##								-->
-  <!-- ## Set java-source for use with the javac task:			-->
-  <!-- ##								-->
-
-  <property name="java-source" value="${pkg-path}/**/*.java" />
-  
-  <import file="${top}/build_common.xml"/>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: all							-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="all"
-          description=""
-          depends="compile,
-		   this.stubs">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="clean.jre.ext">
-
-    <delete dir="${build.classes}/${pkg-path}" quiet="true" />
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-	  depends="mahalo.jar,
-		   mahalo-dl.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: mahalo.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="mahalo.jar"
-	  depends="tools">
-  
-    <property name="mahalo.deps" location="${build.deps}/mahalo.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${mahalo.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.mahalo"				/>
-
-      <arg value="com.sun.jini.mahalo.ActivatableMahaloImpl"		/>
-      <arg value="com.sun.jini.mahalo.NonActivatableMahaloImpl"		/>
-      <arg value="com.sun.jini.mahalo.TransientMahaloImpl"		/>
-      <arg value="com.sun.jini.mahalo.MahaloPermission"			/>
-      <arg value="com.sun.jini.mahalo.TxnManagerImpl_Stub"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/mahalo.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/mahalo.jar" 
-         index="false"
-         manifest="${src.jini.manifest}/mahalo.mf">
-         
-      <fileset dir="${build.classes}"  includesfile="${mahalo.deps}" />
-
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-      <arg line="-jar"							/>
-      <arg path="${build.lib}/mahalo.jar"				/>
-      
-      <arg line="-cp"							/>
-      <arg path="${build.classes}"					/>
-
-      <arg line="-default true"   					/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: mahalo-dl.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="mahalo-dl.jar"
-	  depends="tools">
-  
-    <property name="mahalo-dl.deps" location="${build.deps}/mahalo-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${mahalo-dl.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.mahalo"				/>
-      
-      <arg value="com.sun.jini.mahalo.MahaloPermission"			/>
-      <arg value="com.sun.jini.mahalo.TxnMgrProxy"			/>
-      <arg value="com.sun.jini.mahalo.ProxyVerifier"			/>
-      <arg value="com.sun.jini.mahalo.TxnManagerInternalException"	/>
-      <arg value="net.jini.lookup.entry.Name"				/>
-      <arg value="net.jini.lookup.entry.ServiceInfo"			/>
-      <arg value="com.sun.jini.lookup.entry.BasicServiceType"		/>
-      <arg value="com.sun.jini.mahalo.TxnMgrAdminProxy"			/>
-      <arg value="com.sun.jini.mahalo.InternalManagerException"		/>
-      <arg value="com.sun.jini.mahalo.TxnManagerImpl_Stub"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib-dl}/mahalo-dl.jar" quiet="true" />
-
-    <jar destfile="${build.lib-dl}/mahalo-dl.jar"
-         index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${mahalo-dl.deps}" />
- 
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-	<arg line="-cp"							/>
-	<arg path="${build.lib}/jsk-platform.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/mahalo-dl.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"				/>
-  
-	<arg line="-proxy com.sun.jini.mahalo.TxnMgrAdminProxy"		/>
-	<arg line="-proxy com.sun.jini.mahalo.TxnMgrProxy"		/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-          description="Builds the RMI stubs for ${ant.project.name}."
-          depends="compile">
-
-    <rmic base="${build.classes}" stubversion="1.2">
-
-      <classpath refid="path.jini" />
-      <include name="com/sun/jini/mahalo/TxnManagerImpl.class" />
-
-    </rmic>
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/mercury/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/mercury/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/mercury/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/mercury/build.xml Fri Mar 27 14:52:49 2009
@@ -1,258 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="mercury" basedir="." default="all">
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## ENVIRONMENT SETTINGS						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <property name="top" location="../../../../.."/>
-
-  <property name="pkg-path" value="com/sun/jini/${ant.project.name}"/>
-
-  <!-- ##								-->
-  <!-- ## Set java-source for use with the javac task:			-->
-  <!-- ##								-->
-
-  <property name="java-source" value="${pkg-path}/**/*.java" />
-  
-  <import file="${top}/build_common.xml"/>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: all							-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="all"
-          description=""
-          depends="compile,
-		   this.stubs">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="clean.jre.ext">
-
-    <delete dir="${build.classes}/${pkg-path}" quiet="true"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-	  depends="mercury.jar,
-		   mercury-dl.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: mercury.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="mercury.jar"
-	  depends="tools">
-  
-    <property name="mercury.deps" location="${build.deps}/mercury.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${mercury.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.mercury"				/>
-
-      <arg value="com.sun.jini.mercury.ActivatableMercuryImpl"		/>
-      <arg value="com.sun.jini.mercury.NonActivatableMercuryImpl"	/>
-      <arg value="com.sun.jini.mercury.TransientMercuryImpl"		/>
-      <arg value="com.sun.jini.mercury.MercuryPermission"		/>
-      <arg value="com.sun.jini.mercury.MailboxImpl_Stub"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/mercury.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/mercury.jar" 
-         index="false"
-         manifest="${src.jini.manifest}/mercury.mf">
-         
-      <fileset dir="${build.classes}"  includesfile="${mercury.deps}" />
-
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-      <arg line="-jar"							/>
-      <arg path="${build.lib}/mercury.jar"				/>
-      
-      <arg line="-cp"							/>
-      <arg path="${build.classes}"					/>
-
-      <arg line="-default true"   					/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: mercury-dl.jar					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="mercury-dl.jar"
-	  depends="tools">
-  
-    <property name="mercury-dl.deps" location="${build.deps}/mercury-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${mercury-dl.deps}">
-      
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.mercury"				/>
-      
-      <arg value="com.sun.jini.lookup.entry.BasicServiceType"		/>
-      <arg value="com.sun.jini.mercury.InternalMailboxException"	/>
-      <arg value="com.sun.jini.mercury.ListenerProxy"			/>
-      <arg value="com.sun.jini.mercury.MailboxAdminProxy"		/>
-      <arg value="com.sun.jini.mercury.MailboxImpl_Stub"		/>
-      <arg value="com.sun.jini.mercury.MailboxProxy"			/>
-      <arg value="com.sun.jini.mercury.MercuryPermission"		/>
-      <arg value="com.sun.jini.mercury.RemoteEventDataCursor"           />
-      <arg value="com.sun.jini.mercury.ProxyVerifier"			/>
-      <arg value="com.sun.jini.mercury.Registration"			/>
-      <arg value="com.sun.jini.reliableLog.LogException"		/>
-      <arg value="net.jini.lookup.entry.Name"				/>
-      <arg value="net.jini.lookup.entry.ServiceInfo"			/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib-dl}/mercury-dl.jar" quiet="true" />
-
-    <jar destfile="${build.lib-dl}/mercury-dl.jar" 
-         index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${mercury-dl.deps}" />
-      
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-	<arg line="-cp"							/>
-	<arg path="${build.lib}/jsk-platform.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/mercury-dl.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"				/>
-  
-	<arg line="-proxy com.sun.jini.mercury.ListenerProxy"		/>
-	<arg line="-proxy com.sun.jini.mercury.MailboxAdminProxy"	/>
-	<arg line="-proxy com.sun.jini.mercury.MailboxProxy"		/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-          description="Builds the RMI stubs for ${ant.project.name}."
-          depends="compile">
-
-    <rmic base="${build.classes}" stubversion="1.2">
-
-      <classpath refid="path.jini" />
-      <include name="com/sun/jini/mercury/MailboxImpl.class" />
-
-    </rmic>
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/norm/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/norm/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/norm/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/norm/build.xml Fri Mar 27 14:52:49 2009
@@ -1,258 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="norm" basedir="." default="all">
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## ENVIRONMENT SETTINGS						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <property name="top" location="../../../../.."/>
-
-  <property name="pkg-path" value="com/sun/jini/${ant.project.name}"/>
-
-  <!-- ##								-->
-  <!-- ## Set java-source for use with the javac task:			-->
-  <!-- ##								-->
-
-  <property name="java-source" value="${pkg-path}/**/*.java" />
-
-  <import file="${top}/build_common.xml"/>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: all							-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="all"
-          description=""
-          depends="compile,
-		   this.stubs">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="clean.jre.ext">
-
-    <delete dir="${build.classes}/${pkg-path}" quiet="true"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-          description=""
-	  depends="norm.jar,
-		   norm-dl.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: norm.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="norm.jar"
-	  depends="tools">
-  
-    <property name="norm.deps" location="${build.deps}/norm.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${norm.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.norm"					/>
-
-      <arg value="com.sun.jini.norm.ActivatableNormServerImpl"		/>
-      <arg value="com.sun.jini.norm.NormPermission"			/>
-      <arg value="com.sun.jini.norm.NormServerBaseImpl_Stub"		/>
-      <arg value="com.sun.jini.norm.PersistentNormServerImpl"		/>
-      <arg value="com.sun.jini.norm.TransientNormServerImpl"		/>
-      <arg value="com.sun.jini.reliableLog.LogException"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/norm.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/norm.jar" 
-         index="false"
-         manifest="${src.jini.manifest}/norm.mf">
-         
-      <fileset dir="${build.classes}"  includesfile="${norm.deps}" />
-
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-      <arg line="-cp"							/>
-      <arg path="${build.classes}"					/>
-
-      <arg line="-jar"							/>
-      <arg path="${build.lib}/norm.jar"				/>
-      
-      <arg line="-default true"   					/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: norm-dl.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="norm-dl.jar"
-	  depends="tools">
-
-  
-    <property name="norm-dl.deps" location="${build.deps}/norm-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${norm-dl.deps}">
-      
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.norm"					/>
-
-      <arg value="com.sun.jini.lease.BasicRenewalFailureEvent"		/>
-      <arg value="com.sun.jini.lookup.entry.BasicServiceType"		/>
-      <arg value="com.sun.jini.norm.CorruptedStoreException"		/>
-      <arg value="com.sun.jini.norm.InternalNormException"		/>
-      <arg value="com.sun.jini.norm.NormPermission"			/>
-      <arg value="com.sun.jini.norm.NormServerBaseImpl_Stub"		/>
-      <arg value="com.sun.jini.norm.ProxyVerifier"			/>
-      <arg value="com.sun.jini.reliableLog.LogException"		/>
-      <arg value="com.sun.jini.start.ServiceProxyAccessor"		/>
-      <arg value="net.jini.lookup.entry.ServiceInfo"			/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib-dl}/norm-dl.jar" quiet="true" />
-
-    <jar destfile="${build.lib-dl}/norm-dl.jar" index="false">
-
-      <fileset dir="${build.classes}" includesfile="${norm-dl.deps}" />
-
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-	<arg line="-cp"							/>
-	<arg path="${build.lib}/jsk-platform.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/norm-dl.jar"				/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"				/>
-  
-	<arg line="-proxy com.sun.jini.norm.AbstractProxy"		/>
-	<arg line="-proxy com.sun.jini.norm.AdminProxy"			/>
-	<arg line="-proxy com.sun.jini.norm.NormProxy"			/>
-	<arg line="-proxy com.sun.jini.norm.SetProxy"			/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-          description="Builds the RMI stubs for ${ant.project.name}."
-          depends="compile">
-
-    <rmic base="${build.classes}" stubversion="1.2">
-
-      <classpath refid="path.jini" />
-      <include name="com/sun/jini/norm/NormServerBaseImpl.class" />
-
-    </rmic>
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/outrigger/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/outrigger/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/outrigger/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/outrigger/build.xml Fri Mar 27 14:52:49 2009
@@ -1,248 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="outrigger" basedir="." default="all">
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## ENVIRONMENT SETTINGS						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <property name="top" location="../../../../.."/>
-
-  <property name="pkg-path" value="com/sun/jini/${ant.project.name}"/>
-
-  <!-- ##								-->
-  <!-- ## Set java-source for use with the javac task:			-->
-  <!-- ##								-->
-
-  <property name="java-source" value="${pkg-path}/**/*.java" />
-
-  <import file="${top}/build_common.xml"/>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: all							-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="all"
-          description=""
-          depends="compile,
-		   this.stubs">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="clean.jre.ext">
-
-    <delete dir="${build.classes}/${pkg-path}"	quiet="true"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars" 
-          depends="outrigger.jar,
-		   outrigger-dl.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: outrigger.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="outrigger.jar"
-          depends="tools,
-		   store.jars">
-  
-    <property name="outrigger.deps" location="${build.deps}/outrigger.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${outrigger.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.outrigger"				/>
-
-      <arg value="com.sun.jini.outrigger.OutriggerPermission"		/>
-      <arg value="com.sun.jini.outrigger.OutriggerServerWrapper_Stub"	/>
-      <arg value="com.sun.jini.outrigger.PersistentOutriggerImpl"	/>
-      <arg value="com.sun.jini.outrigger.TransientOutriggerImpl"	/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/outrigger.jar" quiet="true"/>
-
-    <jar destfile="${build.lib}/outrigger.jar" 
-         index="false"
-	 manifest="${src.jini.manifest}/outrigger.mf">
-         
-      <metainf dir="${src.jini.manifest}/outrigger/META-INF" />
-
-      <fileset dir="${build.classes}"  includesfile="${outrigger.deps}" />
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: store.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="store.jars" >
-
-    <ant inheritAll="false" dir="snaplogstore"
-         target="outrigger-snaplogstore.jar" />
-
-  </target>
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: outrigger-dl.jar					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="outrigger-dl.jar"
-          depends="tools">
-  
-    <property name="outrigger-dl.deps" location="${build.deps}/outrigger-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${outrigger-dl.deps}">
-      
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"				/>
-
-      <arg line="-in com.sun.jini.landlord"				/>
-      <arg line="-in com.sun.jini.outrigger"				/>
-
-      <arg value="com.sun.jini.lookup.entry.BasicServiceType"		/>
-      <arg value="com.sun.jini.outrigger.OutriggerPermission"		/>
-      <arg value="com.sun.jini.outrigger.OutriggerQueryCookie"		/>
-      <arg value="com.sun.jini.outrigger.OutriggerServerWrapper_Stub"	/>
-      <arg value="com.sun.jini.outrigger.OutriggerAvailabilityEvent"	/>
-      <arg value="com.sun.jini.outrigger.ProxyVerifier"			/>
-      <arg value="net.jini.lookup.entry.ServiceInfo"			/>
-      <arg value="net.jini.space.InternalSpaceException"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib-dl}/outrigger-dl.jar" quiet="true"   />
-
-    <jar destfile="${build.lib-dl}/outrigger-dl.jar"
-	 index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${outrigger-dl.deps}" />
-      
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-	<arg line="-cp"								/>
-	<arg path="${build.lib}/jsk-platform.jar"				/>
-  
-	<arg line="-jar"							/>
-	<arg path="${build.lib-dl}/outrigger-dl.jar"				/>
-  
-	<arg line="-jar"							/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"					/>
-  
-	<arg line="-proxy com.sun.jini.outrigger.ConstrainableAdminProxy"	/>
-	<arg line="-proxy com.sun.jini.outrigger.ConstrainableIteratorProxy"	/>
-	<arg line="-proxy com.sun.jini.outrigger.ConstrainableParticipantProxy"	/>
-	<arg line="-proxy com.sun.jini.outrigger.ConstrainableSpaceProxy2"	/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-          description="Builds the RMI stubs for ${ant.project.name}."
-          depends="compile">
-
-    <rmic base="${build.classes}" stubversion="1.2">
-      <classpath refid="path.jini" />
-      <include name="com/sun/jini/outrigger/OutriggerServerWrapper.class" />
-    </rmic>
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/outrigger/snaplogstore/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/outrigger/snaplogstore/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/outrigger/snaplogstore/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/outrigger/snaplogstore/build.xml Fri Mar 27 14:52:49 2009
@@ -1,144 +0,0 @@
-<!--
- ! Licensed to the Apache Software Foundation (ASF) under one
- ! or more contributor license agreements.  See the NOTICE file
- ! distributed with this work for additional information
- ! regarding copyright ownership. The ASF licenses this file
- ! to you 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="snaplogstore" basedir="." default="all">
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## ENVIRONMENT SETTINGS						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <property name="top" location="../../../../../.."/>
-
-  <property name="pkg-path" value="com/sun/jini/outrigger/${ant.project.name}"/>
-
-  <!-- ##								-->
-  <!-- ## Set java-source for use with the javac task:			-->
-  <!-- ##								-->
-
-  <property name="java-source" value="${pkg-path}/**/*.java" />
-  
-  <import file="${top}/build_common.xml"/>
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: all							-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="all"
-          description=""
-          depends="compile">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="clean.jre.ext">
-
-    <delete dir="${build.classes}/${pkg-path}" quiet="true" />
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <!-- Note that outrigger-snaplogstore.jar is not included in this	-->
-  <!-- list. This is because there is a dependency on it in		-->
-  <!-- outrigger/build.xml causing it to be built when outrigger.jar	-->
-  <!-- is built. If outrigger-logstore.jar appeared here it would end	-->
-  <!-- up being built twice.						-->
-
-  <target name="this.jars"
-          description="dummy target">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: outrigger-snaplogstore.jar				-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="outrigger-snaplogstore.jar"
-          depends="tools">
-  
-    <property name="outrigger-snaplogstore.deps" location="${build.deps}/outrigger-snaplogstore.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${outrigger-snaplogstore.deps}">
-      
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskprivate.include}"					/>
-
-      <arg line="-in com.sun.jini.outrigger.snaplogstore"			/>
-
-      <arg value="com.sun.jini.outrigger.snaplogstore.LogStore"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/outrigger-snaplogstore.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/outrigger-snaplogstore.jar"
-	 index="false">
-
-      <fileset	dir="${build.classes}"
-		includesfile="${outrigger-snaplogstore.deps}" />
-
-    </jar>
-
-  </target>
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-	  description="Just a dummy target.">
-
-  </target>
-
-</project>
-