Don Laidlaw [http://community.jboss.org/people/donlaidlaw] created the 
discussion

"Install on Mac OS X - fix"

To view the discussion, visit: http://community.jboss.org/message/590706#590706

--------------------------------------------------------------
I am a jbpm newbie, and trying it out on my Mac OS X 10.6.6 MacBook Pro. There 
is a problem when running the ant install.demo command in the eclipse install 
portion. The main problem is that eclipse builds are no longer available for 
the carbon UI. Only the cocoa builds are available at this time. There may be 
some carbon builds on an archive somewhere that I do not know about, but I did 
not look too hard.

My solution was to change the build.xml to download the cocoa version of 
eclipse. While I was there I also added detection of 64-bit and selected the 
appropriate download for either cocoa 32 or 64 bit. The changes are as follows:

Old Version:

<condition property="download.type" value="macosx-carbon">
  <and>
    <os family="mac" />
    <os family="unix" />
  </and>
</condition>

New Version:

<condition property="download.type" value="macosx-cocoa">
  <and>
    <os family="mac" />
    <os family="unix" />
    <not>
       <os arch="x86_64" />
    </not>
  </and>
</condition>
<condition property="download.type" value="macosx-cocoa-x86_64">
  <and>
    <os family="mac" />
    <os family="unix" />
    <os arch="x86_64" />
  </and>
</condition>

And a change to the line where eclipse is fetched from the eclipse.org site

Old version:

<get src=" 
http://download.eclipse.org/technology/epp/downloads/release/helios/SR2/eclipse-java-helios-SR2-$
 
http://download.eclipse.org/technology/epp/downloads/release/helios/SR2/eclipse-java-helios-SR2-${download.type}.${download.extension}";
 
      
dest="${install.home}/lib/eclipse-java-helios-${download.type}.${download.extension}" 
 />

New Version:

<get src=" 
http://download.eclipse.org/technology/epp/downloads/release/helios/SR2/eclipse-java-helios-SR2-$
 
http://download.eclipse.org/technology/epp/downloads/release/helios/SR2/eclipse-java-helios-SR2-${download.type}.${download.extension}";
      
dest="${install.home}/lib/eclipse-java-helios-${download.type}.${download.extension}" 
 />

The above change gets the latest release of eclipse helios (The SR2 release is 
3.6.2). The old version retrieved eclipse 3.6.0.

The changes above allowed the ant install.demo to run to completion. The demo 
worked OK up to the point of using guvnor, but that will be another discussion.

Enjoy!
-Don
--------------------------------------------------------------

Reply to this message by going to Community
[http://community.jboss.org/message/590706#590706]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]

_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to