Makes deploy-os-specific-bundles publicly accessible. The reason this was previously an internal target was based on the assumption that developers won't need to access it and it would only be needed as a run dependency. This however proved to be wrong since one also needs to execute this target when running the application in an IDE debugger.

cusax-fix
Emil Ivov 17 years ago
parent a973bbcb58
commit 7214e6ea2b

@ -488,7 +488,7 @@
<!--RUN-TESTS--> <!--RUN-TESTS-->
<target name="test" <target name="test"
depends="prepare-all-tests,prepare-local-accounts,-deploy-os-specific-bundles" depends="prepare-all-tests,prepare-local-accounts,deploy-os-specific-bundles"
description="Starts felix and runs selected Service Impl Compatibility Kits."> description="Starts felix and runs selected Service Impl Compatibility Kits.">
<!-- Do the testing itself. Note that we don't fail on error as we need <!-- Do the testing itself. Note that we don't fail on error as we need
@ -576,7 +576,7 @@
<target name="run-simple-tests" <target name="run-simple-tests"
depends="prepare-all-tests,prepare-local-accounts,-deploy-os-specific-bundles" depends="prepare-all-tests,prepare-local-accounts,deploy-os-specific-bundles"
description="runs selected non-felix tests under junit."> description="runs selected non-felix tests under junit.">
<junit haltonfailure="true" fork="true"> <junit haltonfailure="true" fork="true">
@ -613,7 +613,7 @@
<!--RUN-SIP-COMMUNICATOR --> <!--RUN-SIP-COMMUNICATOR -->
<target name="run" depends="-deploy-os-specific-bundles" <target name="run" depends="deploy-os-specific-bundles"
description="Starts felix and runs sip-comunicator gui (use latest build)."> description="Starts felix and runs sip-comunicator gui (use latest build).">
<!-- we allow users to pass command line args using the "args" system <!-- we allow users to pass command line args using the "args" system
@ -700,7 +700,7 @@
</target> </target>
<!--PROFILE-SIP-COMMUNICATOR-IN-NETBEANS-IDE --> <!--PROFILE-SIP-COMMUNICATOR-IN-NETBEANS-IDE -->
<target name="profile" depends="bundle-plugin-profiler4j,-deploy-os-specific-bundles" <target name="profile" depends="bundle-plugin-profiler4j,deploy-os-specific-bundles"
description="Profile Project"> description="Profile Project">
<fail unless="netbeans.home"> <fail unless="netbeans.home">
This target can only run inside the NetBeans IDE. This target can only run inside the NetBeans IDE.
@ -752,7 +752,7 @@
<!-- we run this target before we run SC in order to copy os-specific <!-- we run this target before we run SC in order to copy os-specific
bundles from sc-bundles/osname to its parent sc-bundles--> bundles from sc-bundles/osname to its parent sc-bundles-->
<target name="-deploy-os-specific-bundles" if="bundles.dest.os"> <target name="deploy-os-specific-bundles" if="bundles.dest.os">
<copy todir="${bundles.dest}"> <copy todir="${bundles.dest}">
<fileset dir="${bundles.dest.os}"> <fileset dir="${bundles.dest.os}">

Loading…
Cancel
Save