3. Compiling on MAC gives tools.jar artifact not found
MAC does not have tools.jar bundled with the JDK, The workaround is to change the pom.xml under wsrp/common directory to point to classes.jar rather than tools.jar. Here is a change snippet
Change:
<systemPath>${java.home}/../lib/tools.jar</systemPath>
To:
<systemPath>/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Classes/classes.jar</systemPath>
|