You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by fb...@apache.org on 2007/10/12 00:06:26 UTC

svn commit: r583971 [3/3] - in /incubator/river/trunk/jtsk: ./ src/ src/com/artima/lookup/util/ src/com/sun/jini/example/browser/ src/com/sun/jini/example/hello/ src/configentry/ src/net/jini/lookup/

Modified: incubator/river/trunk/jtsk/src/com/sun/jini/example/hello/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/src/com/sun/jini/example/hello/build.xml?rev=583971&r1=583970&r2=583971&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/src/com/sun/jini/example/hello/build.xml (original)
+++ incubator/river/trunk/jtsk/src/com/sun/jini/example/hello/build.xml Thu Oct 11 15:06:25 2007
@@ -18,348 +18,348 @@
 
 <project name="hello" 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"/>
-
-  <property name="hello.lib"    location="${basedir}/lib"	/>
-  <property name="hello.config" location="${basedir}/config"	/>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## 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: hello.lib						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="hello.lib"
-          depends="">
-
-    <mkdir dir="${basedir}/lib"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-          depends="client.jar,
-		   mdprefld.jar,
-		   server.jar,
-		   server-act.jar,
-		   server-dl.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: client.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="client.jar"
-	  depends="tools,
-		   hello.lib">
-
-    <property name="example-client.deps" location="${build.deps}/example-client.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${example-client.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskplatform.exclude}"				/>
-
-      <arg line="-in net.jini"						/>
-      <arg line="-in com.sun.jini"					/>
-
-      <arg value="com.sun.jini.example.hello.Client"			/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${hello.lib}/client.jar" quiet="true" />
-
-    <jar destfile="${hello.lib}/client.jar" 
-         index="false"
-	 manifest="${basedir}/client.mf">
-         
-      <fileset dir="${build.classes}"  includesfile="${example-client.deps}" />
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: mdprefld.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="mdprefld.jar"
-	  depends="tools,
-		   hello.lib">
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${hello.lib}/mdprefld.jar" quiet="true" />
-
-    <jar destfile="${hello.lib}/mdprefld.jar" 
-         index="false">
-         
-      <fileset	dir="${build.classes}"
-		includes="com/sun/jini/example/hello/MdClassAnnotationProvider.class" />
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: server.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="server.jar"
-	  depends="tools,
-		   hello.lib">
-
-    <property name="example-server.deps" location="${build.deps}/example-server.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${example-server.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-      <arg line="${jskplatform.exclude}"				/>
-
-      <arg line="-in net.jini"						/>
-      <arg line="-in com.sun.jini"					/>
-
-      <arg value="com.sun.jini.example.hello.Server"			/>
-      <arg value="com.sun.jini.example.hello.Server_Stub"		/>
-      <arg value="com.sun.jini.example.hello.ConfirmingILFactory"	/>
-      <arg value="com.sun.jini.example.hello.ConfirmingInvocationHandler"/>
-      <arg value="com.sun.jini.example.hello.ServerPermission"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${hello.lib}/server.jar" quiet="true" />
-
-    <jar destfile="${hello.lib}/server.jar" 
-         index="false"
-	 manifest="${basedir}/server.mf">
-         
-      <fileset dir="${build.classes}"  includesfile="${example-server.deps}" />
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: server-act.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="server-act.jar"
-	  depends="tools,
-		   hello.lib">
-
-    <property name="example-server-act.deps" location="${build.deps}/example-server-act.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${example-server-act.deps}">
-          
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-
-      <arg line="${jskplatform.exclude}"				/>
-
-      <arg line="-in net.jini"						/>
-      <arg line="-in com.sun.jini"					/>
-
-      <arg value="com.sun.jini.example.hello.ActivatableServer"		/>
-      <arg value="com.sun.jini.example.hello.ConfirmingILFactory"	/>
-      <arg value="com.sun.jini.example.hello.ConfirmingInvocationHandler"/>
-      <arg value="com.sun.jini.example.hello.Server"			/>
-      <arg value="com.sun.jini.example.hello.Server_Stub"	/>
-      <arg value="com.sun.jini.example.hello.ServerPermission"	/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${hello.lib}/server-act.jar" quiet="true" />
-
-    <jar destfile="${hello.lib}/server-act.jar" 
-         index="false"
-	 manifest="${basedir}/server-act.mf">
-         
-      <fileset dir="${build.classes}" includesfile="${example-server-act.deps}" />
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: server-dl.jar					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="server-dl.jar"
-          depends="tools,
-		   hello.lib">
-
-    <property name="example-server-dl.deps" location="${build.deps}/example-server-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${example-server-dl.deps}">
-      
-      <classpath refid="path.classdep"					/>
-      <arg value="-cp"							/>
-      <arg path="${build.classes}"					/>
-      <arg value="-files"						/>
-
-      <arg line="${jskplatform.exclude}"				/>
-
-      <arg line="-in net.jini"						/>
-      <arg line="-in com.sun.jini"					/>
-
-      <arg value="com.sun.jini.example.hello.ConfirmingInvocationHandler"/>
-      <arg value="com.sun.jini.example.hello.Hello"			/>
-      <arg value="com.sun.jini.example.hello.Proxy"			/>
-      <arg value="com.sun.jini.example.hello.Server_Stub"		/>
-      <arg value="com.sun.jini.example.hello.ServerPermission"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${hello.lib}/server-dl.jar" quiet="true"/>
-
-    <jar destfile="${hello.lib}/server-dl.jar"
-         index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${example-server-dl.deps}" />
-      
-      <metainf dir="${hello.config}/META-INF" />
-
-    </jar>
-
-  </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/hello/Server.class"/>
-
-    </rmic>
-
-  </target>
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## 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"/>
+      
+	<property name="hello.lib"    location="${basedir}/lib"/>
+	<property name="hello.config" location="${basedir}/config"/>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## 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: hello.lib						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="hello.lib"
+		depends="">
+      
+		<mkdir dir="${basedir}/lib"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: this.jars						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="this.jars"
+		depends="client.jar,
+			 mdprefld.jar,
+			 server.jar,
+			 server-act.jar,
+			 server-dl.jar">
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: client.jar						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="client.jar"
+		depends="tools,
+			 hello.lib">
+      
+		<property name="example-client.deps" location="${build.deps}/example-client.deps"/>
+		
+		<!-- ##								-->
+		<!-- ## Run ClassDep.						-->
+		<!-- ##								-->
+	    
+		<java classname="com.sun.jini.tool.ClassDep"
+		      failonerror="true"
+		      output="${example-client.deps}">
+		      
+			<classpath refid="path.classdep"/>
+			<arg value="-cp"/>
+			<arg path="${build.classes}"/>
+			<arg value="-files"/>
+			<arg line="${jskplatform.exclude}"/>
+		  
+			<arg line="-in net.jini"/>
+			<arg line="-in com.sun.jini"/>
+		  
+			<arg value="com.sun.jini.example.hello.Client"/>
+	    
+		</java>
+	    
+		<!-- ##								-->
+		<!-- ## Generate the jar file.					-->
+		<!-- ##								-->
+	    
+		<delete file="${hello.lib}/client.jar" quiet="true"/>
+	    
+		<jar destfile="${hello.lib}/client.jar" 
+		     index="false"
+		     manifest="${basedir}/client.mf">
+		     
+			<fileset dir="${build.classes}" includesfile="${example-client.deps}"/>
+	    
+		</jar>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: mdprefld.jar						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="mdprefld.jar"
+		depends="tools,
+			 hello.lib">
+      
+		<!-- ##								-->
+		<!-- ## Generate the jar file.					-->
+		<!-- ##								-->
+	    
+		<delete file="${hello.lib}/mdprefld.jar" quiet="true"/>
+	    
+		<jar destfile="${hello.lib}/mdprefld.jar" 
+		     index="false">
+		     
+			<fileset dir="${build.classes}"
+				 includes="com/sun/jini/example/hello/MdClassAnnotationProvider.class"/>
+		</jar>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: server.jar						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="server.jar"
+		depends="tools,
+			 hello.lib">
+      
+		<property name="example-server.deps" location="${build.deps}/example-server.deps"/>
+		
+		<!-- ##								-->
+		<!-- ## Run ClassDep.						-->
+		<!-- ##								-->
+	    
+		<java classname="com.sun.jini.tool.ClassDep"
+		      failonerror="true"
+		      output="${example-server.deps}">
+		      
+			<classpath refid="path.classdep"/>
+			<arg value="-cp"/>
+			<arg path="${build.classes}"/>
+			<arg value="-files"/>
+			<arg line="${jskplatform.exclude}"/>
+		  
+			<arg line="-in net.jini"/>
+			<arg line="-in com.sun.jini"/>
+		  
+			<arg value="com.sun.jini.example.hello.Server"/>
+			<arg value="com.sun.jini.example.hello.Server_Stub"/>
+			<arg value="com.sun.jini.example.hello.ConfirmingILFactory"/>
+			<arg value="com.sun.jini.example.hello.ConfirmingInvocationHandler"/>
+			<arg value="com.sun.jini.example.hello.ServerPermission"/>
+	    
+		</java>
+	    
+		<!-- ##								-->
+		<!-- ## Generate the jar file.					-->
+		<!-- ##								-->
+	    
+		<delete file="${hello.lib}/server.jar" quiet="true"/>
+	    
+		<jar destfile="${hello.lib}/server.jar" 
+		     index="false"
+		     manifest="${basedir}/server.mf">
+		     
+		  <fileset dir="${build.classes}"  includesfile="${example-server.deps}"/>
+	    
+		</jar>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: server-act.jar						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="server-act.jar"
+		depends="tools,
+			 hello.lib">
+      
+		<property name="example-server-act.deps" location="${build.deps}/example-server-act.deps"/>
+		
+		<!-- ##								-->
+		<!-- ## Run ClassDep.						-->
+		<!-- ##								-->
+	    
+		<java classname="com.sun.jini.tool.ClassDep"
+		      failonerror="true"
+		      output="${example-server-act.deps}">
+		      
+			<classpath refid="path.classdep"/>
+			<arg value="-cp"/>
+			<arg path="${build.classes}"/>
+			<arg value="-files"/>
+		  
+			<arg line="${jskplatform.exclude}"/>
+		  
+			<arg line="-in net.jini"/>
+			<arg line="-in com.sun.jini"/>
+		  
+			<arg value="com.sun.jini.example.hello.ActivatableServer"/>
+			<arg value="com.sun.jini.example.hello.ConfirmingILFactory"/>
+			<arg value="com.sun.jini.example.hello.ConfirmingInvocationHandler"/>
+			<arg value="com.sun.jini.example.hello.Server"/>
+			<arg value="com.sun.jini.example.hello.Server_Stub"/>
+			<arg value="com.sun.jini.example.hello.ServerPermission"/>
+	    
+		</java>
+	    
+		<!-- ##								-->
+		<!-- ## Generate the jar file.					-->
+		<!-- ##								-->
+	    
+		<delete file="${hello.lib}/server-act.jar" quiet="true"/>
+	    
+		<jar destfile="${hello.lib}/server-act.jar" 
+		     index="false"
+		     manifest="${basedir}/server-act.mf">
+		     
+			<fileset dir="${build.classes}" includesfile="${example-server-act.deps}"/>
+	    
+		</jar>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: server-dl.jar						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="server-dl.jar"
+		depends="tools,
+			 hello.lib">
+      
+		<property name="example-server-dl.deps" location="${build.deps}/example-server-dl.deps"/>
+		
+		<!-- ##								-->
+		<!-- ## Run ClassDep.						-->
+		<!-- ##								-->
+	    
+		<java classname="com.sun.jini.tool.ClassDep"
+		      failonerror="true"
+		      output="${example-server-dl.deps}">
+		  
+			<classpath refid="path.classdep"/>
+			<arg value="-cp"/>
+			<arg path="${build.classes}"/>
+			<arg value="-files"/>
+		  
+			<arg line="${jskplatform.exclude}"/>
+		  
+			<arg line="-in net.jini"/>
+			<arg line="-in com.sun.jini"/>
+		  
+			<arg value="com.sun.jini.example.hello.ConfirmingInvocationHandler"/>
+			<arg value="com.sun.jini.example.hello.Hello"/>
+			<arg value="com.sun.jini.example.hello.Proxy"/>
+			<arg value="com.sun.jini.example.hello.Server_Stub"/>
+			<arg value="com.sun.jini.example.hello.ServerPermission"/>
+	    
+		</java>
+	    
+		<!-- ##								-->
+		<!-- ## Generate the jar file.					-->
+		<!-- ##								-->
+	    
+		<delete file="${hello.lib}/server-dl.jar" quiet="true"/>
+	    
+		<jar destfile="${hello.lib}/server-dl.jar"
+		     index="false">
+		     
+		  <fileset dir="${build.classes}"  includesfile="${example-server-dl.deps}"/>
+		  
+		  <metainf dir="${hello.config}/META-INF"/>
+	    
+		</jar>
+      
+	</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/hello/Server.class"/>
+	    
+		</rmic>
+      
+	</target>
 
 </project>
 

Modified: incubator/river/trunk/jtsk/src/configentry/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/src/configentry/build.xml?rev=583971&r1=583970&r2=583971&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/src/configentry/build.xml (original)
+++ incubator/river/trunk/jtsk/src/configentry/build.xml Thu Oct 11 15:06:25 2007
@@ -18,680 +18,680 @@
 
 <project name="configentry" 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"/>
-
-  <patternset id="svc-common-entries-set">
-    <include name="JoinManager" />
-
-    <patternset id="dis-common-entries-set">
-      <include name="LeaseRenewalManager"      />
-      <include name="LookupDiscovery"          />
-      <include name="LookupLocatorDiscovery"   />
-    </patternset>
-
-  </patternset>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## MACRODEF: create-activatable					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <macrodef name="create-activatable">
-
-     <attribute name="prefix"/>
-
-     <sequential>
-       <echo message="Creating ${entry.dest.dir}/@{prefix}-activatable"/>
-
-       <concat destfile="${entry.dest.dir}/@{prefix}-activatable">
-   
-	 <fileset dir="${entry.src.dir}">
-	   <include name="@{prefix}-activatable"/>
-	   <include name="@{prefix}-persistent" />
-	   <include name="@{prefix}-transient"  />
-	 </fileset>
-   
-	 <fileset dir="${entry.src.dir}">
-	   <patternset refid="svc-common-entries-set"/>
-	 </fileset>
-   
-       </concat>
-     </sequential>
-
-  </macrodef>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## MACRODEF: create-persistent					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <macrodef name="create-persistent">
-
-     <attribute name="prefix"/>
-
-     <sequential>
-       <echo message="Creating ${entry.dest.dir}/@{prefix}-persistent"/>
-
-       <concat destfile="${entry.dest.dir}/@{prefix}-persistent">
-   
-	 <fileset dir="${entry.src.dir}">
-	   <include name="@{prefix}-persistent" />
-	   <include name="@{prefix}-transient"  />
-	 </fileset>
-   
-	 <fileset dir="${entry.src.dir}">
-	   <patternset refid="svc-common-entries-set"/>
-	 </fileset>
-   
-       </concat>
-     </sequential>
-
-  </macrodef>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## MACRODEF: create-transient					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <macrodef name="create-transient">
-
-     <attribute name="prefix"/>
-
-     <sequential>
-       <echo message="Creating ${entry.dest.dir}/@{prefix}-transient"/>
-
-       <concat destfile="${entry.dest.dir}/@{prefix}-transient">
-   
-	 <fileset dir="${entry.src.dir}">
-	   <include name="@{prefix}-transient"  />
-	 </fileset>
-   
-	 <fileset dir="${entry.src.dir}">
-	   <patternset refid="svc-common-entries-set"/>
-	 </fileset>
-   
-       </concat>
-     </sequential>
-
-  </macrodef>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: all							-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="all"
-          depends="setup-all,
-		   browser,
-		   destroy,
-		   fiddler-activatable,
-		   fiddler-persistent,
-		   fiddler-transient,
-		   JoinManager,
-		   LeaseRenewalManager,
-		   LookupDiscovery,
-		   LookupLocatorDiscovery,
-		   mahalo-activatable,
-		   mahalo-persistent,
-		   mahalo-transient,
-		   mercury-activatable,
-		   mercury-persistent,
-		   mercury-transient,
-		   norm-activatable,
-		   norm-persistent,
-		   norm-transient,
-		   outrigger-activatable,
-		   outrigger-persistent,
-		   outrigger-transient,
-		   phoenix,
-		   phoenix-group,
-		   phoenix-stop,
-		   reggie-activatable,
-		   reggie-persistent,
-		   reggie-transient,
-		   ServiceDiscoveryManager,
-		   sharedgroup,
-		   start,
-		   WakeupManager">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: dis-common-entries					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="dis-common-entries"
-	  depends="LeaseRenewalManager,
-		   LookupDiscovery,
-		   LookupLocatorDiscovery">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: svc-common-entries					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="svc-common-entries"
-	  depends="JoinManager,
-		   dis-common-entries">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: browser						-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="browser"
-          depends="dis-common-entries">
-
-    <delete file="${entry.dest.dir}/browser"/>
-
-    <echo message="Creating ${entry.dest.dir}/browser"/>
-
-    <concat destfile="${entry.dest.dir}/browser">
-
-      <fileset dir="${entry.src.dir}">
-        <include name="browser"/>
-      </fileset>
-
-      <fileset dir="${entry.src.dir}">
-        <patternset refid="dis-common-entries-set"/>
-      </fileset>
-
-    </concat>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: destroy						-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="destroy">
-
-    <delete file="${entry.dest.dir}/destroy"/>
-    <copy   file="${entry.src.dir}/destroy" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: fiddler-activatable					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="fiddler-activatable"
-          depends="fiddler-persistent,
-		   fiddler-transient,
-		   svc-common-entries">
-
-    <delete file="${entry.dest.dir}/fiddler-activatable"/>
-    <create-activatable prefix="fiddler"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: fiddler-persistent					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="fiddler-persistent">
-
-    <delete file="${entry.dest.dir}/fiddler-persistent"/>
-    <create-persistent prefix="fiddler"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: fiddler-transient					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="fiddler-transient">
-
-    <delete file="${entry.dest.dir}/fiddler-transient"/>
-    <create-transient prefix="fiddler"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: JoinManager						-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="JoinManager">
-
-    <delete file="${entry.dest.dir}/JoinManager"/>
-    <copy   file="${entry.src.dir}/JoinManager" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: LeaseRenewalManager					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="LeaseRenewalManager">
-
-    <delete file="${entry.dest.dir}/LeaseRenewalManager"/>
-    <copy   file="${entry.src.dir}/LeaseRenewalManager" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: LookupDiscovery					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="LookupDiscovery">
-
-    <delete file="${entry.dest.dir}/LookupDiscovery"/>
-    <copy   file="${entry.src.dir}/LookupDiscovery" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: LookupLocatorDiscovery				-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="LookupLocatorDiscovery">
-
-    <delete file="${entry.dest.dir}/LookupLocatorDiscovery"/>
-    <copy   file="${entry.src.dir}/LookupLocatorDiscovery" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: mahalo-activatable					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="mahalo-activatable">
-
-    <delete file="${entry.dest.dir}/mahalo-activatable"/>
-    <create-activatable prefix="mahalo"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: mahalo-persistent					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="mahalo-persistent">
-
-    <delete file="${entry.dest.dir}/mahalo-persistent"/>
-    <create-persistent prefix="mahalo"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: mahalo-transient					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="mahalo-transient">
-
-    <delete file="${entry.dest.dir}/mahalo-transient"/>
-    <create-transient prefix="mahalo"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: mercury-activatable					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="mercury-activatable">
-
-    <delete file="${entry.dest.dir}/mercury-activatable"/>
-    <create-activatable prefix="mercury"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: mercury-persistent					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="mercury-persistent">
-
-    <delete file="${entry.dest.dir}/mercury-persistent"/>
-    <create-persistent prefix="mercury"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: mercury-transient					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="mercury-transient">
-
-    <delete file="${entry.dest.dir}/mercury-transient"/>
-    <create-transient prefix="mercury"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: norm-activatable					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="norm-activatable">
-
-    <delete file="${entry.dest.dir}/norm-activatable"/>
-    <create-activatable prefix="norm"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: norm-persistent					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="norm-persistent">
-
-    <delete file="${entry.dest.dir}/norm-persistent"/>
-    <create-persistent prefix="norm"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: norm-transient					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="norm-transient">
-
-    <delete file="${entry.dest.dir}/norm-transient"/>
-    <create-transient prefix="norm"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: outrigger-activatable					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="outrigger-activatable">
-
-    <delete file="${entry.dest.dir}/outrigger-activatable"/>
-    <create-activatable prefix="outrigger"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: outrigger-persistent					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="outrigger-persistent">
-
-    <delete file="${entry.dest.dir}/outrigger-persistent"/>
-    <create-persistent prefix="outrigger"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: outrigger-transient					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="outrigger-transient">
-
-    <delete file="${entry.dest.dir}/outrigger-transient"/>
-    <create-transient prefix="outrigger"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: phoenix						-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="phoenix">
-
-    <delete file="${entry.dest.dir}/phoenix"/>
-    <copy   file="${entry.src.dir}/phoenix" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: phoenix-group						-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="phoenix-group">
-
-    <delete file="${entry.dest.dir}/phoenix-group"/>
-    <copy   file="${entry.src.dir}/phoenix-group" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: phoenix-stop						-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="phoenix-stop">
-
-    <delete file="${entry.dest.dir}/phoenix-stop"/>
-    <copy   file="${entry.src.dir}/phoenix-stop" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: reggie-activatable					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="reggie-activatable">
-
-    <delete file="${entry.dest.dir}/reggie-activatable"/>
-    <create-activatable prefix="reggie"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: reggie-persistent					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="reggie-persistent">
-
-    <delete file="${entry.dest.dir}/reggie-persistent"/>
-    <create-persistent prefix="reggie"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: reggie-transient					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="reggie-transient">
-
-    <delete file="${entry.dest.dir}/reggie-transient"/>
-    <create-transient prefix="reggie"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: ServiceDiscoveryManager				-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="ServiceDiscoveryManager">
-
-    <delete file="${entry.dest.dir}/ServiceDiscoveryManager"/>
-    <copy   file="${entry.src.dir}/ServiceDiscoveryManager" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: sharedgroup						-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="sharedgroup">
-
-    <delete file="${entry.dest.dir}/sharedgroup"/>
-    <copy   file="${entry.src.dir}/sharedgroup" todir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: start							-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="start">
-
-    <delete file="${entry.dest.dir}/start"/>
-    <copy   file="${entry.src.dir}/start" todir="${entry.dest.dir}"/>
-
-  </target>
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: WakeupManager 					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="WakeupManager">
-
-    <delete file="${entry.dest.dir}/WakeupManager"/>
-    <copy   file="${entry.src.dir}/WakeupManager" todir="${entry.dest.dir}"/>
-
-  </target>
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="clean.jre.ext">
-
-    <delete dir="${entry.dest.dir}"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-	  description="Just a dummy target.">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-	  description="Just a dummy target.">
-
-  </target>
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## 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"/>
+      
+	<patternset id="svc-common-entries-set">
+		<include name="JoinManager"/>
+	    
+		<patternset id="dis-common-entries-set">
+			<include name="LeaseRenewalManager"/>
+			<include name="LookupDiscovery"/>
+			<include name="LookupLocatorDiscovery"/>
+		</patternset>
+      
+	</patternset>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## MACRODEF: create-activatable					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<macrodef name="create-activatable">
+      
+		<attribute name="prefix"/>
+	   
+		<sequential>
+			<echo message="Creating ${entry.dest.dir}/@{prefix}-activatable"/>
+		 
+			<concat destfile="${entry.dest.dir}/@{prefix}-activatable">
+		    
+				<fileset dir="${entry.src.dir}">
+					<include name="@{prefix}-activatable"/>
+					<include name="@{prefix}-persistent"/>
+					<include name="@{prefix}-transient"/>
+				</fileset>
+			  
+				<fileset dir="${entry.src.dir}">
+					<patternset refid="svc-common-entries-set"/>
+				</fileset>
+		    
+			</concat>
+		</sequential>
+      
+	</macrodef>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## MACRODEF: create-persistent					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<macrodef name="create-persistent">
+      
+		<attribute name="prefix"/>
+	   
+		<sequential>
+			<echo message="Creating ${entry.dest.dir}/@{prefix}-persistent"/>
+		 
+			<concat destfile="${entry.dest.dir}/@{prefix}-persistent">
+		    
+				<fileset dir="${entry.src.dir}">
+					<include name="@{prefix}-persistent"/>
+					<include name="@{prefix}-transient"/>
+				</fileset>
+			  
+				<fileset dir="${entry.src.dir}">
+					<patternset refid="svc-common-entries-set"/>
+				</fileset>
+		    
+			</concat>
+		</sequential>
+      
+	</macrodef>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## MACRODEF: create-transient					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<macrodef name="create-transient">
+      
+		<attribute name="prefix"/>
+	   
+		<sequential>
+			<echo message="Creating ${entry.dest.dir}/@{prefix}-transient"/>
+		 
+			<concat destfile="${entry.dest.dir}/@{prefix}-transient">
+		    
+				<fileset dir="${entry.src.dir}">
+					<include name="@{prefix}-transient"/>
+				</fileset>
+			  
+				<fileset dir="${entry.src.dir}">
+					<patternset refid="svc-common-entries-set"/>
+				</fileset>
+		    
+			</concat>
+		</sequential>
+      
+	</macrodef>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: all							-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="all"
+		depends="setup-all,
+			 browser,
+			 destroy,
+			 fiddler-activatable,
+			 fiddler-persistent,
+			 fiddler-transient,
+			 JoinManager,
+			 LeaseRenewalManager,
+			 LookupDiscovery,
+			 LookupLocatorDiscovery,
+			 mahalo-activatable,
+			 mahalo-persistent,
+			 mahalo-transient,
+			 mercury-activatable,
+			 mercury-persistent,
+			 mercury-transient,
+			 norm-activatable,
+			 norm-persistent,
+			 norm-transient,
+			 outrigger-activatable,
+			 outrigger-persistent,
+			 outrigger-transient,
+			 phoenix,
+			 phoenix-group,
+			 phoenix-stop,
+			 reggie-activatable,
+			 reggie-persistent,
+			 reggie-transient,
+			 ServiceDiscoveryManager,
+			 sharedgroup,
+			 start,
+			 WakeupManager">
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: dis-common-entries					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="dis-common-entries"
+		depends="LeaseRenewalManager,
+			 LookupDiscovery,
+			 LookupLocatorDiscovery">
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: svc-common-entries					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="svc-common-entries"
+		depends="JoinManager,
+			 dis-common-entries">
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: browser							-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="browser"
+		depends="dis-common-entries">
+      
+		<delete file="${entry.dest.dir}/browser"/>
+	    
+		<echo message="Creating ${entry.dest.dir}/browser"/>
+	    
+		<concat destfile="${entry.dest.dir}/browser">
+	    
+			<fileset dir="${entry.src.dir}">
+				<include name="browser"/>
+			</fileset>
+		  
+			<fileset dir="${entry.src.dir}">
+				<patternset refid="dis-common-entries-set"/>
+			</fileset>
+	    
+		</concat>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: destroy							-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="destroy">
+      
+		<delete file="${entry.dest.dir}/destroy"/>
+		<copy   file="${entry.src.dir}/destroy" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: fiddler-activatable					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="fiddler-activatable"
+		depends="fiddler-persistent,
+			 fiddler-transient,
+			 svc-common-entries">
+      
+		<delete file="${entry.dest.dir}/fiddler-activatable"/>
+		<create-activatable prefix="fiddler"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: fiddler-persistent					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="fiddler-persistent">
+      
+		<delete file="${entry.dest.dir}/fiddler-persistent"/>
+		<create-persistent prefix="fiddler"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: fiddler-transient					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="fiddler-transient">
+      
+		<delete file="${entry.dest.dir}/fiddler-transient"/>
+		<create-transient prefix="fiddler"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: JoinManager						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="JoinManager">
+      
+		<delete file="${entry.dest.dir}/JoinManager"/>
+		<copy   file="${entry.src.dir}/JoinManager" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: LeaseRenewalManager					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="LeaseRenewalManager">
+      
+		<delete file="${entry.dest.dir}/LeaseRenewalManager"/>
+		<copy   file="${entry.src.dir}/LeaseRenewalManager" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: LookupDiscovery						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="LookupDiscovery">
+      
+		<delete file="${entry.dest.dir}/LookupDiscovery"/>
+		<copy   file="${entry.src.dir}/LookupDiscovery" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: LookupLocatorDiscovery					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="LookupLocatorDiscovery">
+      
+		<delete file="${entry.dest.dir}/LookupLocatorDiscovery"/>
+		<copy   file="${entry.src.dir}/LookupLocatorDiscovery" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: mahalo-activatable					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="mahalo-activatable">
+      
+		<delete file="${entry.dest.dir}/mahalo-activatable"/>
+		<create-activatable prefix="mahalo"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: mahalo-persistent					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="mahalo-persistent">
+      
+		<delete file="${entry.dest.dir}/mahalo-persistent"/>
+		<create-persistent prefix="mahalo"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: mahalo-transient					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="mahalo-transient">
+      
+		<delete file="${entry.dest.dir}/mahalo-transient"/>
+		<create-transient prefix="mahalo"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: mercury-activatable					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="mercury-activatable">
+      
+		<delete file="${entry.dest.dir}/mercury-activatable"/>
+		<create-activatable prefix="mercury"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: mercury-persistent					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="mercury-persistent">
+      
+		<delete file="${entry.dest.dir}/mercury-persistent"/>
+		<create-persistent prefix="mercury"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: mercury-transient					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="mercury-transient">
+      
+		<delete file="${entry.dest.dir}/mercury-transient"/>
+		<create-transient prefix="mercury"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: norm-activatable					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="norm-activatable">
+      
+		<delete file="${entry.dest.dir}/norm-activatable"/>
+		<create-activatable prefix="norm"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: norm-persistent						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="norm-persistent">
+      
+		<delete file="${entry.dest.dir}/norm-persistent"/>
+		<create-persistent prefix="norm"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: norm-transient						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="norm-transient">
+      
+		<delete file="${entry.dest.dir}/norm-transient"/>
+		<create-transient prefix="norm"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: outrigger-activatable					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="outrigger-activatable">
+      
+		<delete file="${entry.dest.dir}/outrigger-activatable"/>
+		<create-activatable prefix="outrigger"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: outrigger-persistent					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="outrigger-persistent">
+      
+		<delete file="${entry.dest.dir}/outrigger-persistent"/>
+		<create-persistent prefix="outrigger"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: outrigger-transient					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="outrigger-transient">
+      
+		<delete file="${entry.dest.dir}/outrigger-transient"/>
+		<create-transient prefix="outrigger"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: phoenix							-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="phoenix">
+      
+		<delete file="${entry.dest.dir}/phoenix"/>
+		<copy   file="${entry.src.dir}/phoenix" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: phoenix-group						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="phoenix-group">
+      
+		<delete file="${entry.dest.dir}/phoenix-group"/>
+		<copy   file="${entry.src.dir}/phoenix-group" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: phoenix-stop						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="phoenix-stop">
+      
+		<delete file="${entry.dest.dir}/phoenix-stop"/>
+		<copy   file="${entry.src.dir}/phoenix-stop" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: reggie-activatable					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="reggie-activatable">
+      
+		<delete file="${entry.dest.dir}/reggie-activatable"/>
+		<create-activatable prefix="reggie"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: reggie-persistent					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="reggie-persistent">
+      
+		<delete file="${entry.dest.dir}/reggie-persistent"/>
+		<create-persistent prefix="reggie"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: reggie-transient					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="reggie-transient">
+      
+		<delete file="${entry.dest.dir}/reggie-transient"/>
+		<create-transient prefix="reggie"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: ServiceDiscoveryManager					-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="ServiceDiscoveryManager">
+      
+		<delete file="${entry.dest.dir}/ServiceDiscoveryManager"/>
+		<copy   file="${entry.src.dir}/ServiceDiscoveryManager" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: sharedgroup						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="sharedgroup">
+      
+		<delete file="${entry.dest.dir}/sharedgroup"/>
+		<copy   file="${entry.src.dir}/sharedgroup" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: start							-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="start">
+      
+		<delete file="${entry.dest.dir}/start"/>
+		<copy   file="${entry.src.dir}/start" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: WakeupManager 						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="WakeupManager">
+      
+		<delete file="${entry.dest.dir}/WakeupManager"/>
+		<copy   file="${entry.src.dir}/WakeupManager" todir="${entry.dest.dir}"/>
+      
+	</target>
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: clean							-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="clean"
+		description="Removes all files and dirs created by the build."
+		depends="clean.jre.ext">
+      
+		<delete dir="${entry.dest.dir}"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: this.jars						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="this.jars"
+		description="Just a dummy target.">
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: this.stubs						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="this.stubs"
+		description="Just a dummy target.">
+      
+	</target>
 
 </project>
 

Modified: incubator/river/trunk/jtsk/src/net/jini/lookup/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/src/net/jini/lookup/build.xml?rev=583971&r1=583970&r2=583971&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/src/net/jini/lookup/build.xml (original)
+++ incubator/river/trunk/jtsk/src/net/jini/lookup/build.xml Thu Oct 11 15:06:25 2007
@@ -18,160 +18,160 @@
 
 <project name="lookup" basedir="." default="all">
 
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## ENVIRONMENT SETTINGS						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <property name="top" location="../../../.."/>
-
-  <property name="pkg-path" value="net/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">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="clean.jre.ext">
-
-    <!-- ##                                                             -->
-    <!-- ## Delete the applicable build files and directories.		-->
-    <!-- ##                                                             -->
-
-    <delete dir="${build.classes}/${pkg-path}" quiet="true"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars							-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-          depends="sdm-dl.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: sdm-dl.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="sdm-dl.jar"
-	  depends="tools">
-  
-    <property name="sdm-dl.deps" location="${build.deps}/sdm-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${sdm-dl.deps}">
-          
-      <classpath refid="path.classdep"				/>
-      <arg value="-cp"						/>
-      <arg path="${build.classes}"				/>
-      <arg value="-files"					/>
-      <arg line="${jskplatform.exclude}"			/>
-
-      <arg line="-in com.sun.jini"				/>
-      <arg line="-in net.jini"					/>
-
-      <arg value="com.sun.jini.proxy.BasicProxyTrustVerifier"	/>
-      <arg value="net.jini.lookup.ServiceDiscoveryManager$$LookupCacheImpl$$LookupListener_Stub"/>
-
-    </java> 
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib-dl}/sdm-dl.jar" quiet="true"/>
-
-    <jar destfile="${build.lib-dl}/sdm-dl.jar"
-	 index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${sdm-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}/sdm-dl.jar"				/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"				/>
-  
-	<arg line="-proxy net.jini.lookup.ServiceDiscoveryManager$$LookupCacheImpl$$LookupListener_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="net/jini/lookup/ServiceDiscoveryManager$$LookupCacheImpl$$LookupListener.class"/>
-
-    </rmic>
-
-  </target>
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## ENVIRONMENT SETTINGS						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<property name="top" location="../../../.."/>
+      
+	<property name="pkg-path" value="net/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">
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: clean							-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="clean"
+		description="Removes all files and dirs created by the build."
+		depends="clean.jre.ext">
+      
+		<!-- ##								-->
+		<!-- ## Delete the applicable build files and directories.	-->
+		<!-- ##								-->
+      
+		<delete dir="${build.classes}/${pkg-path}" quiet="true"/>
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: this.jars						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="this.jars"
+		depends="sdm-dl.jar">
+      
+	</target>
+      
+      
+	<!-- ################################################################	-->
+	<!-- ##									-->
+	<!-- ## TARGET: sdm-dl.jar						-->
+	<!-- ##									-->
+	<!-- ################################################################	-->
+      
+	<target name="sdm-dl.jar"
+		depends="tools">
+	
+		<property name="sdm-dl.deps" location="${build.deps}/sdm-dl.deps"/>
+		
+		<!-- ##					-->
+		<!-- ## Run ClassDep.			-->
+		<!-- ##					-->
+	    
+		<java classname="com.sun.jini.tool.ClassDep"
+		      failonerror="true"
+		      output="${sdm-dl.deps}">
+		      
+			<classpath refid="path.classdep"/>
+			<arg value="-cp"/>
+			<arg path="${build.classes}"/>
+			<arg value="-files"/>
+			<arg line="${jskplatform.exclude}"/>
+		  
+			<arg line="-in com.sun.jini"/>
+			<arg line="-in net.jini"/>
+		  
+			<arg value="com.sun.jini.proxy.BasicProxyTrustVerifier"/>
+			<arg value="net.jini.lookup.ServiceDiscoveryManager$$LookupCacheImpl$$LookupListener_Stub"/>
+	    
+		</java> 
+	    
+		<!-- ##					-->
+		<!-- ## Generate the jar file.		-->
+		<!-- ##					-->
+	    
+		<delete file="${build.lib-dl}/sdm-dl.jar" quiet="true"/>
+	    
+		<jar destfile="${build.lib-dl}/sdm-dl.jar"
+		     index="false">
+		     
+			<fileset dir="${build.classes}"  includesfile="${sdm-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}/sdm-dl.jar"/>
+			  
+				<arg line="-jar"/>
+				<arg path="${build.lib-dl}/jsk-dl.jar"/>
+			  
+				<arg line="-proxy net.jini.lookup.ServiceDiscoveryManager$$LookupCacheImpl$$LookupListener_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="net/jini/lookup/ServiceDiscoveryManager$$LookupCacheImpl$$LookupListener.class"/>
+	    
+		</rmic>
+      
+	</target>
 
 </project>