
However, fixing this issue is simple; you just need to add a JVM option like the following one:
-Xdock:icon=/path/to/your/icons.icnsWhere can this option be added you ask? Why yes, here is how you can do it:
- Go to $GROOVY_HOME/bin
- Edit startGroov
- Search for JAVA_OPTS and Darwin. You'll find a line that looks like this
if $darwin; then JAVA_OPTS="$JAVA_OPTS -Xdock:name=$GROOVY_APP_NAME" fi
- Add the -Xdock:icon entry to that line et voilĂ !

Keep on Groovying!