Update of /cvsroot/mc4j/mc4j
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18223
Modified Files:
build.xml
Log Message:
Initial support for OC4J
Also properly installing the JDMK libaries.
Index: build.xml
===================================================================
RCS file: /cvsroot/mc4j/mc4j/build.xml,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** build.xml 21 Mar 2004 21:31:05 -0000 1.29
--- build.xml 2 Apr 2004 03:38:11 -0000 1.30
***************
*** 117,120 ****
--- 117,123 ----
<jar jarfile="mc4j_core.jar" manifest="dist/module_manifest.mf" update="true" compress="false">
+ <!-- OC4J support: put this into JAR for OC4J ApplicationClient to work-->
+ <fileset dir="src/etc" includes="**/*"/>
+
<fileset dir="classes" >
***************
*** 218,221 ****
--- 221,232 ----
</copy>
+ <!-- install the additional JDMK remoting libraries -->
+ <mkdir dir="${application.install}\mc4jlib\JDMK"/>
+ <copy todir="${application.install}\mc4jlib\JDMK" overwrite="yes">
+ <fileset dir="lib/jdmk">
+ <include name="*.jar"/>
+ </fileset>
+ </copy>
+
<copy todir="${application.install}" flatten="no" overwrite="yes">
***************
*** 241,244 ****
--- 252,256 ----
file="application/branding/branding" />
+ <mkdir dir="${application.install}/lib/patches"/>
<jar
destfile="${application.install}/lib/patches/Mc4jBranding.jar"
***************
*** 391,395 ****
<sysproperty key="com.sun.management.jmxremote.ssl" value="false"/>
<sysproperty key="com.sun.management.jmxremote.password" value="false"/>
!
<sysproperty key="java.security.policy" value="${application.install}/bin/ide.policy"/>
--- 403,411 ----
<sysproperty key="com.sun.management.jmxremote.ssl" value="false"/>
<sysproperty key="com.sun.management.jmxremote.password" value="false"/>
!
! <!-- This currently causes rendering problems
! <sysproperty key="netbeans.winsys.imageSource" value="images/EditorBackground.gif"/>
! -->
!
<sysproperty key="java.security.policy" value="${application.install}/bin/ide.policy"/>
***************
*** 442,446 ****
<!-- Define where the persistent files live -->
! <sysproperty key="netbeans.user" value="${user.home}/.mc4j/1.2b4"/>
<!-- Provide stacktraces on exceptions -->
<sysproperty key="netbeans.debug.exceptions" value="true"/>
--- 458,462 ----
<!-- Define where the persistent files live -->
! <sysproperty key="netbeans.user" value="${user.home}/.mc4j/1.2b5"/>
<!-- Provide stacktraces on exceptions -->
<sysproperty key="netbeans.debug.exceptions" value="true"/>
|