further progress towards self hosting FELIX-1323
* replace require bundle dependency on fragment for local classpath via ivy resolve, 
* retrieve versions from parent sigil-defaults.properties


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@800008 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/sigil/eclipse/obr/.classpath b/sigil/eclipse/obr/.classpath
index d3b9691..7f0e71c 100644
--- a/sigil/eclipse/obr/.classpath
+++ b/sigil/eclipse/obr/.classpath
@@ -3,5 +3,6 @@
 	<classpathentry kind="src" path="src"/>
 	<classpathentry kind="con" path="org.cauldron.sigil.core.classpathContainer"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+	<classpathentry kind="lib" path="lib/org.eclipse.swt.carbon.macosx.jar"/>
 	<classpathentry kind="output" path="build/classes"/>
 </classpath>
diff --git a/sigil/eclipse/obr/build.xml b/sigil/eclipse/obr/build.xml
index 558c184..9d56d59 100644
--- a/sigil/eclipse/obr/build.xml
+++ b/sigil/eclipse/obr/build.xml
@@ -17,6 +17,10 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<project name="eclipse.obr" default="build">
-      <import file="../build.xml"/>
+<project name="eclipse.obr" default="build"
+	  xmlns:ivy="antlib:org.apache.ivy.ant">
+  <import file="../build.xml"/>
+  <target name="init">
+    <ivy:retrieve organisation="org.eclipse" module="org.eclipse.swt.carbon.macosx" revision="3.4.1.v3452b" inline="true" pattern="lib/[artifact].[ext]" transitive="false"/>
+  </target>
 </project>