Changes between Version 8 and Version 9 of BuildingWorldPainter


Ignore:
Timestamp:
06/06/20 09:59:56 (4 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingWorldPainter

    v8 v9  
    5252
    5353Alternatively you could remove the JIDE Docking Framework from the code and replace it with some alternative docking framework. It's a lot of work, but doable.
     54
     55== Apple Java Extensions
     56
     57To integrate with Mac OS X, the Apple Java Extensions are needed. They are proprietary code which cannot be distributed by us so you will have to download it manually and install it in your local repo the same way as above. They can currently be found [https://developer.apple.com/library/archive/samplecode/AppleJavaExtensions/Introduction/Intro.html here]. Download the `.zip` file and extract the `.jar` file from it. Install it in your local repo with the following command:
     58
     59{{{
     60mvn install:install-file -DgroupId=com.apple -DartifactId=AppleJavaExtensions -Dversion=1.6 -Dpackaging=jar -Dfile=AppleJavaExtensions.jar
     61}}}
     62
     63Of course if you are not interested in running the code on Apple Mac OS X, you can also just remove this dependency and the code that uses it. !WorldPainter will still run on Mac OS X, but it will be less well integrated into the menus.
    5464
    5565= Set up Maven toolchains