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 [6/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/com/sun/jini/phoenix/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/phoenix/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/phoenix/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/phoenix/build.xml Fri Mar 27 14:52:49 2009
@@ -1,368 +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="phoenix" 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" verbose="false" />
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-          depends="phoenix.jar,
-		   phoenix-dl.jar,
-		   phoenix-group.jar,
-		   phoenix-init.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: phoenix.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="phoenix.jar"
-	  depends="tools">
-  
-    <property name="phoenix.deps" location="${build.deps}/phoenix.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${phoenix.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.phoenix"				/>
-
-      <arg value="com.sun.jini.phoenix.AccessILFactory"			/>
-      <arg value="com.sun.jini.phoenix.Activation"			/>
-      <arg value="com.sun.jini.phoenix.ActivatorPermission"		/>
-      <arg value="com.sun.jini.phoenix.ActivatorSunJrmpExporter"	/>
-      <arg value="com.sun.jini.phoenix.MonitorAccessExporter"		/>
-      <arg value="com.sun.jini.phoenix.MonitorPermission"		/>
-      <arg value="com.sun.jini.phoenix.PhoenixConstants"		/>
-      <arg value="com.sun.jini.phoenix.RegistrySunExporter"		/>
-      <arg value="com.sun.jini.phoenix.SystemAccessExporter"		/>
-      <arg value="com.sun.jini.phoenix.SystemAccessILFactory"		/>
-      <arg value="com.sun.jini.phoenix.SystemAccessProxyTrustILFactory"	/>
-      <arg value="com.sun.jini.phoenix.SystemPermission"		/>
-
-      <arg value="com.sun.jini.phoenix.AbstractActivator_Stub"		/>
-      <arg value="com.sun.jini.phoenix.AbstractInstantiator_Stub"	/>
-      <arg value="com.sun.jini.phoenix.AbstractMonitor_Stub"		/>
-      <arg value="com.sun.jini.phoenix.AbstractRegistry_Skel"		/>
-      <arg value="com.sun.jini.phoenix.AbstractRegistry_Stub"		/>
-      <arg value="com.sun.jini.phoenix.AbstractSystem_Stub"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/phoenix.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/phoenix.jar" 
-         index="false"
-	 manifest="${src.jini.manifest}/phoenix.mf">
-         
-      <fileset	dir="${build.classes}"
-		includesfile="${phoenix.deps}" />
-
-      <fileset	dir="${src.jini}"
-		includes="com/sun/jini/phoenix/resources/*.properties" />
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: phoenix-dl.jar					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="phoenix-dl.jar"
-	  depends="tools">
-  
-    <property name="phoenix-dl.deps" location="${build.deps}/phoenix-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${phoenix-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.phoenix"				/>
-
-      <arg value="com.sun.jini.phoenix.ConstrainableAID"		/>
-      <arg value="com.sun.jini.phoenix.SystemPermission"		/>
-      <arg value="com.sun.jini.phoenix.ActivatorPermission"		/>
-      <arg value="com.sun.jini.phoenix.MonitorPermission"		/>
-      <arg value="com.sun.jini.phoenix.ExecOptionPermission"		/>
-      <arg value="com.sun.jini.phoenix.ExecPermission"			/>
-      <arg value="com.sun.jini.phoenix.InactiveGroupException"		/>
-      <arg value="com.sun.jini.proxy.BasicProxyTrustVerifier"		/>
-      <arg value="com.sun.jini.phoenix.AbstractActivator_Stub"		/>
-      <arg value="com.sun.jini.phoenix.AbstractMonitor_Stub"		/>
-      <arg value="com.sun.jini.phoenix.AbstractSystem_Stub"		/>
-      <arg value="com.sun.jini.phoenix.AbstractRegistry_Stub"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib-dl}/phoenix-dl.jar" quiet="true" />
-
-    <jar destfile="${build.lib-dl}/phoenix-dl.jar" 
-         index="false">
-         
-      <fileset	dir="${build.classes}"
-		includesfile="${phoenix-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}/phoenix-dl.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"				/>
-  
-	<arg line="-proxy com.sun.jini.phoenix.AbstractSystem_Stub"	/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: phoenix-group.jar					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="phoenix-group.jar"
-	  depends="tools">
-
-    <property name="phoenix-group.deps" location="${build.deps}/phoenix-group.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${phoenix-group.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.phoenix.ActivationGroupImpl"		/>
-      <arg value="com.sun.jini.phoenix.AccessILFactory"			/>
-      <arg value="com.sun.jini.phoenix.InstantiatorAccessExporter"	/>
-      <arg value="com.sun.jini.phoenix.InstantiatorPermission"		/>
-      <arg value="com.sun.jini.phoenix.AbstractInstantiator_Stub"	/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/phoenix-group.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/phoenix-group.jar" 
-         index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${phoenix-group.deps}" />
-
-      <metainf dir="${src.jini.manifest}/phoenix-group/META-INF" />
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: phoenix-init.jar					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="phoenix-init.jar"
-	  depends="tools">
-  
-    <property name="phoenix-init.deps" location="${build.deps}/phoenix-init.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${phoenix-init.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.phoenix.ActivationGroupInit" />
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/phoenix-init.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/phoenix-init.jar" 
-         index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${phoenix-init.deps}" />
-
-    </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/phoenix/AbstractActivator.class" />
-      <include name="com/sun/jini/phoenix/AbstractMonitor.class" />
-      <include name="com/sun/jini/phoenix/AbstractSystem.class" />
-      <include name="com/sun/jini/phoenix/AbstractInstantiator.class" />
-
-    </rmic>
-
-    <rmic base="${build.classes}" stubversion="1.1">
-
-      <classpath refid="path.jini" />
-
-      <include name="com/sun/jini/phoenix/AbstractRegistry.class" />
-
-    </rmic>
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/reggie/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/reggie/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/reggie/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/reggie/build.xml Fri Mar 27 14:52:49 2009
@@ -1,255 +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="reggie" 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="reggie.jar,
-		   reggie-dl.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: reggie.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="reggie.jar"
-	  depends="tools">
-  
-    <property name="reggie.deps" location="${build.deps}/reggie.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${reggie.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.reggie"				/>
-
-      <arg value="com.sun.jini.reggie.PersistentRegistrarImpl"		/>
-      <arg value="com.sun.jini.reggie.RegistrarPermission"		/>
-      <arg value="com.sun.jini.reggie.RegistrarImpl_Stub"		/>
-      <arg value="com.sun.jini.reggie.TransientRegistrarImpl"		/>
-
-    </java>      
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/reggie.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/reggie.jar" 
-         index="false"
-         manifest="${src.jini.manifest}/reggie.mf">
-         
-      <fileset dir="${build.classes}"  includesfile="${reggie.deps}" />
-
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-      <arg line="-cp"							/>
-      <arg path="${build.classes}"					/>
-
-      <arg line="-jar"							/>
-      <arg path="${build.lib}/reggie.jar"				/>
-      
-      <arg line="-default true"   					/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: reggie-dl.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="reggie-dl.jar"
-	  depends="tools">
-    
-    <property name="reggie-dl.deps" location="${build.deps}/reggie-dl.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${reggie-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.reggie"				/>
-
-      <arg value="com.sun.jini.lookup.entry.BasicServiceType"		/>
-      <arg value="com.sun.jini.reggie.AdminProxy"			/>
-      <arg value="com.sun.jini.reggie.EventLease"			/>
-      <arg value="com.sun.jini.reggie.ProxyVerifier"			/>
-      <arg value="com.sun.jini.reggie.RegistrarEvent"			/>
-      <arg value="com.sun.jini.reggie.RegistrarImpl_Stub"		/>
-      <arg value="com.sun.jini.reggie.RegistrarPermission"		/>
-      <arg value="com.sun.jini.reggie.RegistrarProxy"			/>
-      <arg value="com.sun.jini.reggie.Registration"			/>
-      <arg value="com.sun.jini.reliableLog.LogException"		/>
-      <arg value="net.jini.lookup.entry.ServiceInfo"			/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib-dl}/reggie-dl.jar" quiet="true"/>
-
-    <jar destfile="${build.lib-dl}/reggie-dl.jar" 
-         index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${reggie-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}/reggie-dl.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"				/>
-  
-	<arg line=
-		"-proxy com.sun.jini.reggie.ConstrainableRegistrarProxy"/>
-	<arg line="-proxy com.sun.jini.reggie.ConstrainableAdminProxy"	/>
-
-      </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/reggie/RegistrarImpl.class" />
-
-    </rmic>
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/start/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/start/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/start/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/start/build.xml Fri Mar 27 14:52:49 2009
@@ -1,412 +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="start" 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,
-		   copy-resources,
-		   this.stubs">
-
-  </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: copy-resources					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="copy-resources"
-          description="Copies various resources directories to the classes dir."
-          depends="setup-all">
-
-    <delete dir="${build.classes}/${pkg-path}/resources"/>
-    <mkdir  dir="${build.classes}/${pkg-path}/resources"/>
-
-    <copy todir="${build.classes}/${pkg-path}/resources">
-
-      <fileset dir="${src.jini}/${pkg-path}/resources">
-        <include name="**"/>
-        <patternset refid="pattern.nomakefiles"	   />
-      </fileset>
-
-    </copy>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-          description=""
-          depends="destroy.jar,
-                   group.jar,
-                   group-dl.jar,
-                   sharedvm.jar,
-                   start.jar">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: destroy.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="destroy.jar"
-          depends="tools">
-
-    <property name="destroy.deps" location="${build.deps}/destroy.deps" />
-
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${destroy.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.start"				/>
-
-      <arg value="com.sun.jini.start.DestroySharedGroup"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete  file="${build.lib}/destroy.jar" quiet="true"/>
-
-    <jar destfile="${build.lib}/destroy.jar" 
-         index="false"
-         manifest="${src.jini.manifest}/destroy.mf">
-         
-      <fileset dir="${build.classes}"
-	       includesfile="${destroy.deps}">
-        <include name="com/sun/jini/start/resources/**"/>
-      </fileset>
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: group.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="group.jar"
-          depends="tools">
-  
-    <property name="group.deps" location="${build.deps}/group.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${group.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.start"				/>
-
-      <arg value="com.sun.jini.start.SharedGroupImpl"			/>
-      <arg value="com.sun.jini.start.SharedGroupImpl_Stub"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete  file="${build.lib}/group.jar" quiet="true"/>
-
-    <jar destfile="${build.lib}/group.jar" 
-         index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${group.deps}" />
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: group-dl.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="group-dl.jar"
-          depends="tools">
-  
-    <property name="group-dl.deps" location="${build.deps}/group-dl.deps" />
-  
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${group-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.start"				/>
-
-      <arg value="com.sun.jini.start.ProxyVerifier"			/>
-      <arg value="com.sun.jini.start.SharedGroupImpl_Stub"		/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete  file="${build.lib-dl}/group-dl.jar" quiet="true"/>
-
-    <jar destfile="${build.lib-dl}/group-dl.jar" 
-         index="false">
-         
-      <fileset dir="${build.classes}"  includesfile="${group-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}/group-dl.jar"			/>
-  
-	<arg line="-jar"						/>
-	<arg path="${build.lib-dl}/jsk-dl.jar"				/>
-  
-	<arg line="-proxy com.sun.jini.start.SharedGroupImpl_Stub"	/>
-
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: sharedvm.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="sharedvm.jar"
-          depends="tools">
-  
-    <property name="sharedvm.deps" location="${build.deps}/sharedvm.deps" />
-
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-    
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${sharedvm.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 value="com.sun.jini.start.ActivateWrapper"			/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete  file="${build.lib}/sharedvm.jar" quiet="true"/>
-
-    <jar destfile="${build.lib}/sharedvm.jar" 
-         index="false"
-         manifest="${src.jini.manifest}/sharedvm.mf">
-         
-      <fileset dir="${build.classes}"  includesfile="${sharedvm.deps}" />
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: start.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="start.jar"
-          depends="tools">
-    
-    <property name="start.deps" location="${build.deps}/start.deps" />
-
-    <!-- ##								-->
-    <!-- ## Run ClassDep.						-->
-    <!-- ##								-->
-    
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${start.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 value="com.sun.jini.start.ServiceStarter"			/>
-      <arg value="com.sun.jini.start.SharedActivatableServiceDescriptor"/>
-      <arg value="com.sun.jini.start.SharedActivationGroupDescriptor"	/>
-      <arg value="com.sun.jini.start.NonActivatableServiceDescriptor"	/>
-
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete  file="${build.lib}/start.jar" quiet="true"/>
-
-    <jar destfile="${build.lib}/start.jar" 
-         index="false"
-         manifest="${src.jini.manifest}/start.mf">
-         
-      <fileset dir="${build.classes}"
-	       includesfile="${start.deps}">
-        <include name="com/sun/jini/start/resources/**"	/>
-      </fileset>
-
-    </jar>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-          depends="compile">
-
-    <!-- ##                                                             -->
-    <!-- ## Compile RMI stubs                                           -->
-    <!-- ##                                                             -->
-
-    <rmic base="${build.classes}" stubversion="1.2">
-
-      <classpath refid="path.jini" />
-
-      <include name="com/sun/jini/start/SharedGroupImpl.class" />
-
-    </rmic>
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/thread/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/thread/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/thread/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/thread/build.xml Fri Mar 27 14:52:49 2009
@@ -1,91 +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="thread" 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">
-
-  </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="Just a dummy target.">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs"
-	  description="Just a dummy target.">
-
-  </target>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/com/sun/jini/tool/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/com/sun/jini/tool/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/com/sun/jini/tool/build.xml (original)
+++ incubator/river/jtsk/trunk/src/com/sun/jini/tool/build.xml Fri Mar 27 14:52:49 2009
@@ -1,228 +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="tool" basedir="." default="all">
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## ENVIRONMENT SETTINGS						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <!-- ##								-->
-  <!-- ## Import the local settings if they exist, ignoring errors	-->
-  <!-- ## (ie, optional=true) if the file is nonexistent.		-->
-  <!-- ## 								-->
-
-  <import file="../../../../build_local.xml" optional="true"/>
-
-  <condition property="top" value="../../../../..">
-    <not> <isset property="top"/> </not>
-  </condition>
-
-  <property name="pkg-path" value="com/sun/jini/tool"/>
-
-  <!-- ##								-->
-  <!-- ## 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,
-		   copy-resources">
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: clean                                                 -->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="clean"
-          description="Removes all files and dirs created by the build."
-          depends="setup-all">
-
-    <!-- ##                                                             -->
-    <!-- ## Delete the applicable build files and directories.		-->
-    <!-- ##                                                             -->
-
-    <delete dir="${build.classes}/${pkg-path}"
-            quiet="true" verbose="false" />
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##                                                               -->
-  <!-- ## TARGET: copy-resources					-->
-  <!-- ##                                                               -->
-  <!-- ################################################################ -->
-
-  <target name="copy-resources"
-          description="Copies various resources directories to the classes dir."
-          depends="setup-all">
-
-    <delete dir="${build.classes}/${pkg-path}/resources"/>
-    <mkdir  dir="${build.classes}/${pkg-path}/resources"/>
-
-    <copy todir="${build.classes}/${pkg-path}/resources">
-
-      <fileset dir="${src.tools}/${pkg-path}/resources">
-        <include name="**"/>
-        <patternset refid="pattern.nomakefiles"	   />
-      </fileset>
-
-    </copy>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.jars						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.jars"
-	  depends="tools.jar">
-  
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: tools.jar						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="tools.jar"
-	  depends="setup-all">
-  
-    <property name="tools.deps" location="${build.deps}/tools.deps" />
-    
-    <!-- ##								-->
-    <!-- ## Run ClassDep            					-->
-    <!-- ##								-->
-
-    <java classname="com.sun.jini.tool.ClassDep"
-          failonerror="true"
-          output="${tools.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 line="-in com.sun.jini.start"	/>
-
-      <arg value="com.sun.jini.tool.CheckConfigurationFile"			/>
-      <arg value="com.sun.jini.tool.CheckSer"					/>
-      <arg value="com.sun.jini.tool.ClassDep"					/>
-      <arg value="com.sun.jini.tool.ClassDep$$Compare"				/>
-      <arg value="com.sun.jini.tool.ClassDep$$Env"				/>
-      <arg value="com.sun.jini.tool.ClassDepLoader"				/>
-      <arg value="com.sun.jini.tool.ClassServer"				/>
-      <arg value="com.sun.jini.tool.ComputeDigest"				/>
-      <arg value="com.sun.jini.tool.ComputeHttpmdCodebase"			/>
-      <arg value="com.sun.jini.tool.JarWrapper"					/>
-      <arg value="com.sun.jini.tool.PreferredListGen"				/>
-      <arg value="com.sun.jini.tool.envcheck.AbstractPlugin"			/>
-      <arg value="com.sun.jini.tool.envcheck.EnvCheck"				/>
-      <arg value="com.sun.jini.tool.envcheck.SubVM"				/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckActivationSystem"	/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckCodebase"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckConfig"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckJDK1_4"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckJSKPlatform"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckJSKPolicy"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckJsseProps"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckLoggingConfig"	/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckNoLoopback"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckPersistence"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.CheckPolicy"		/>
-      <arg value="com.sun.jini.tool.envcheck.plugins.FileAccessCheckTask"	/>
-    </java>
-
-    <!-- ##								-->
-    <!-- ## Generate the jar file.					-->
-    <!-- ##								-->
-
-    <delete file="${build.lib}/tools.jar" quiet="true" />
-
-    <jar destfile="${build.lib}/tools.jar" 
-         index="false"
-	 manifest="${src.tools.manifest}/tools.mf">
-         
-      <fileset	dir="${src.tools.manifest}/tools"
-		includes="META-INF/services/com.sun.jini.tool.envcheck.Plugin" />
-
-      <fileset dir="${build.classes}"  includesfile="${tools.deps}" />
-
-      <fileset	dir="${src.tools}"
-		includes="com/sun/jini/tool/resources/*.properties
-			  com/sun/jini/tool/envcheck/resources/*.properties
-			  com/sun/jini/tool/envcheck/plugins/resources/*.properties" />
-
-    </jar>
-
-    <!-- ##								-->
-    <!-- ## Generate the Preferred List					-->
-    <!-- ##								-->
-
-    <preferredlistgen>
-
-      <plg-elements>
-
-      <arg line="-cp"							/>
-      <arg path="${build.classes}"					/>
-
-      <arg line="-jar"							/>
-      <arg path="${build.lib}/tools.jar"				/>
-      
-      </plg-elements>
-
-    </preferredlistgen>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: this.stubs						-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="this.stubs" description="Just a dummy target."/>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/configentry/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/configentry/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/configentry/build.xml (original)
+++ incubator/river/jtsk/trunk/src/configentry/build.xml Fri Mar 27 14:52:49 2009
@@ -1,697 +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="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>
-
-</project>
-

Modified: incubator/river/jtsk/trunk/src/net/jini/lookup/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/src/net/jini/lookup/build.xml?rev=759164&r1=759163&r2=759164&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/src/net/jini/lookup/build.xml (original)
+++ incubator/river/jtsk/trunk/src/net/jini/lookup/build.xml Fri Mar 27 14:52:49 2009
@@ -1,177 +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="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>
-
-</project>
-