first attempt of ant run target and netbeans run ide-action

cusax-fix
Brian Burch 20 years ago
parent 0208e0b5f2
commit fe7db0c9b1

@ -257,6 +257,27 @@
</java>
</target>
<!--RUN-SIP-CMMUNICATOR-->
<target name="run" depends="compile,resource"
description="Starts oscar and runs sip-comunicator gui.">
<java classname="org.ungoverned.oscar.Main"
fork="true"
failonerror="true"
classpathref="project.class.path">
<!-- Tell oscar to run sip-communicator-->
<sysproperty key="oscar.config.properties"
value="file:./lib/oscar.client.run.properties"/>
<!-- Tell java.util.logging about our logging preferences -->
<sysproperty key="java.util.logging.config.file"
value="lib/logging.properties"/>
</java>
</target>
<!--CRUISE CONTROL BUILD LOOP target-->
<target name="cc-buildloop" depends="rebuild,bundles,test"
description="Comprehensive rebuild and test (used by Cruise Control)."/>

@ -29,7 +29,7 @@
<target>javadoc</target>
</action>
<action name="run">
<target>bundle-slick-runner</target>
<target>run</target>
</action>
<action name="test">
<target>test</target>

Loading…
Cancel
Save