diff options
author | Emil Ivov <emcho@jitsi.org> | 2007-08-27 21:40:26 +0000 |
---|---|---|
committer | Emil Ivov <emcho@jitsi.org> | 2007-08-27 21:40:26 +0000 |
commit | fe4ab4499465650ff504c0b0443ba06abc33024b (patch) | |
tree | 9501c2e323a878279bb6a073519146be75f0667a /ide | |
parent | 4809ba5d41cba22e291343d493f05cf00d958d8f (diff) | |
download | jitsi-fe4ab4499465650ff504c0b0443ba06abc33024b.zip jitsi-fe4ab4499465650ff504c0b0443ba06abc33024b.tar.gz jitsi-fe4ab4499465650ff504c0b0443ba06abc33024b.tar.bz2 |
Committed updates on the NBProject.
Diffstat (limited to 'ide')
-rw-r--r-- | ide/nbproject/.cvsignore | 1 | ||||
-rw-r--r-- | ide/nbproject/ide-file-targets.xml | 13 | ||||
-rw-r--r-- | ide/nbproject/ide-targets.xml | 25 |
3 files changed, 39 insertions, 0 deletions
diff --git a/ide/nbproject/.cvsignore b/ide/nbproject/.cvsignore new file mode 100644 index 0000000..3e18ebf --- /dev/null +++ b/ide/nbproject/.cvsignore @@ -0,0 +1 @@ +private diff --git a/ide/nbproject/ide-file-targets.xml b/ide/nbproject/ide-file-targets.xml new file mode 100644 index 0000000..64ca997 --- /dev/null +++ b/ide/nbproject/ide-file-targets.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project basedir=".." name="sip-communicator-1.0-IDE"> + <!-- TODO: edit the following target according to your needs --> + <!-- (more info: http://www.netbeans.org/kb/55/freeform-config.html#compilesingle) --> + <target name="compile-selected-files-in-src"> + <fail unless="files">Must set property 'files'</fail> + <!-- TODO decide on and define some value for ${build.classes.dir} --> + <mkdir dir="classes"/> + <javac destdir="classes" includes="${files}" source="1.4" srcdir="src"> + <classpath path="lib/felix.jar:lib/jdic-all.jar:lib/kxml-min.jar:lib/servicebinder.jar:lib/bundle/junit.jar:lib/bundle/log4j.jar:lib/bundle/org.apache.felix.servicebinder-0.8.0-SNAPSHOT.jar:lib/installer-exclude/aclibico-2.1.jar:lib/installer-exclude/backport-util-concurrent.jar:lib/installer-exclude/bcprov-jdk14-130.jar:lib/installer-exclude/commons-logging.jar:lib/installer-exclude/concurrent.jar:lib/installer-exclude/dnsjava-2.0.3.jar:lib/installer-exclude/JainSipApi1.2.jar:lib/installer-exclude/JainSipRi1.2.jar:lib/installer-exclude/jcalendar-1.3.2.jar:lib/installer-exclude/jdom.jar:lib/installer-exclude/jmf.jar:lib/installer-exclude/jml-1.0b1.jar:lib/installer-exclude/joscar-client.jar:lib/installer-exclude/joscar-common.jar:lib/installer-exclude/joscar-protocol.jar:lib/installer-exclude/jsocks-klea.jar:lib/installer-exclude/jspeex.jar:lib/installer-exclude/junit.jar:lib/installer-exclude/log4j-1.2.8.jar:lib/installer-exclude/nist-sdp-1.0.jar:lib/installer-exclude/retroweaver-rt-2.0.jar:lib/installer-exclude/rome-0.9.jar:lib/installer-exclude/smack.jar:lib/installer-exclude/smackx-jingle.jar:lib/installer-exclude/smackx.jar:lib/installer-exclude/Stun4J.jar:lib/installer-exclude/xalan-2.6.0.jar.ant:lib/installer-exclude/ymsg_network_v0_61.jar:lib/os-specific/linux/installer-exclude/jmf.jar:lib/os-specific/linux/jdic_stub.jar:lib/os-specific/mac/AppleJavaExtensions.jar:lib/os-specific/mac/growl.jar:lib/os-specific/mac/jdic_stub.jar:lib/os-specific/mac/installer-exclude/jmf.jar:lib/os-specific/windows/installer-exclude/jmf.jar:lib/os-specific/windows/installer-exclude/sound.jar"/> + </javac> + </target> +</project> diff --git a/ide/nbproject/ide-targets.xml b/ide/nbproject/ide-targets.xml new file mode 100644 index 0000000..da80935 --- /dev/null +++ b/ide/nbproject/ide-targets.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project basedir=".." name="sip-communicator-1.0-IDE"> + <import file="../build.xml"/> + <!-- TODO: edit the following target according to your needs --> + <!-- (more info: http://www.netbeans.org/kb/41/freeform-config.html#debugj2se) --> + <target description="Starts oscar and runs sip-comunicator gui (use latest build)." name="debug-nb"> + <!-- forking prevents from debugging--> + <nbjpdastart addressproperty="jpda.address" name="sip-communicator-1.0" transport="dt_socket"/> + <java classname="org.ungoverned.oscar.Main" classpathref="project.class.path" failonerror="true" fork="true"> + <!-- Sets the charset for the messages --> + <!--sysproperty key="icq.custom.message.charset" value="windows-1252"/--> + <!-- 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"/> + <!-- Setting LD_LIBRARY_PATH--> + <sysproperty key="java.library.path" value="${ld.library.path}"/> + <env key="LD_LIBRARY_PATH" value="${ld.library.path}"/> + <jvmarg value="-Xdebug"/> + <jvmarg value="-Xnoagent"/> + <jvmarg value="-Djava.compiler=none"/> + <jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/> + </java> + </target> +</project> |