Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

The most recent binary build of Wonder frameworks for both WO 5.3.3 and WO 5.4.3 are available from mDimension's Hudson build server jenkins.wocommunity.org. This installation method gets you the latest version.

...

Code Block
languagebash
titleProcedure for WebObjects 5.4.X
linenumberstrue
# Make a directory for the binaries
mkdir ~/WonderBinaries54

# Go into the directory
cd ~/WonderBinaries54

# Download the binaries archive
curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder54Wonder/lastSuccessfulBuild/artifact/distRoot/Roots/Wonder-Frameworks.tar.gz

# Decompress the archive
tar -xzvf Wonder-Frameworks.tar.gz

# Copy the frameworks to the default runtime path
sudo cp -Rvf *.framework /Library/Frameworks
Code Block
languagebash
titleProcedure for WebObjects 5.3.X
linenumberstrue
# Make a directory for the binaries
mkdir ~/WonderBinaries53

# Go into the directory
cd ~/WonderBinaries53

# Download the binaries archive
curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder53WonderLegacy/lastSuccessfulBuild/artifact/distRoot/Roots/Wonder-Frameworks.tar.gz

# Decompress the archive
tar -xzvf Wonder-Frameworks.tar.gz

# Copy the frameworks to the default runtime path
sudo cp -Rvf *.framework /Library/Frameworks

...

Code Block
languagebash
titleProcedure for WebObjects 5.4.X
linenumberstrue
# Navigate to the directory where you previously expanded the original binaries
cd ~/WonderBinaries54

# Delete the installed binary frameworks whose names match the nams of the frameworks in this working directory
for FRAMEWORK in `echo *.framework`; do sudo rm -r /Library/Frameworks/${FRAMEWORK}; done

# Delete the contents of this working directory
rm -r *

# Download latest binaries archive
curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder54Wonder/lastSuccessfulBuild/artifact/Root/distRoots/Wonder-Frameworks.tar.gz

# Expand the archive
tar -xzvf Wonder-Frameworks.tar.gz

# Install the frameworks
sudo cp -Rvf *.framework /Library/Frameworks
Code Block
languagebash
titleProcedure for WebObjects 5.3.X
linenumberstrue
# Navigate to the directory where you previously expanded the original binaries
cd ~/WonderBinaries53

# Delete the installed binary frameworks whose names match the nams of the frameworks in this working directory
for FRAMEWORK in `echo *.framework`; do sudo rm -r /Library/Frameworks/${FRAMEWORK}; done

# Delete the contents of this working directory
rm -r *

# Download latest binaries archive
curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder53WonderLegacy/lastSuccessfulBuild/artifact/Root/distRoots/Wonder-Frameworks.tar.gz

# Expand the archive
tar -xzvf Wonder-Frameworks.tar.gz

# Install the frameworks
sudo cp -Rvf *.framework /Library/Frameworks

...