You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2013/05/13 22:05:11 UTC

svn commit: r1482060 - /ofbiz/trunk/framework/service/build.xml

Author: doogie
Date: Mon May 13 20:05:11 2013
New Revision: 1482060

URL: http://svn.apache.org/r1482060
Log:
FEATURE: Instead of placing the rmi jar into build/lib, but with a .raj
extension, place it into build/rmi, and let it keep the correct .jar
extension. This means you don't need to rename the jar when you copy it
to the remote java virtual machine, but just have to move it.

Modified:
    ofbiz/trunk/framework/service/build.xml

Modified: ofbiz/trunk/framework/service/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/build.xml?rev=1482060&r1=1482059&r2=1482060&view=diff
==============================================================================
--- ofbiz/trunk/framework/service/build.xml (original)
+++ ofbiz/trunk/framework/service/build.xml Mon May 13 20:05:11 2013
@@ -56,7 +56,7 @@ under the License.
     </target>
 
     <target name="rmi-jar" depends="stubs">
-        <jar jarfile="${build.dir}/lib/${name}-rmi.raj">
+        <jar jarfile="${build.dir}/rmi/${name}-rmi.jar">
             <fileset dir="${build.dir}/classes" includes="**/GenericServiceException.class"/>
             <fileset dir="${build.dir}/classes" includes="**/GenericResultWaiter.class"/>
             <fileset dir="${build.dir}/classes" includes="**/GenericRequester.class"/>