Closed aleksandarsusnjar closed 6 years ago
Confirmed workaround for Mac OS X:
ideSetupP2.doLast {
File expectedDropinsDir = file("${buildDir}/oomph-ide.app/Contents/Eclipse/dropins")
if (expectedDropinsDir.exists()) {
File neededDropinsDir = null
if ('Mac OS X'.equals(System.getProperty('os.name'))) {
neededDropinsDir = file("${buildDir}/oomph-ide.app/Contents/MacOS/dropins")
}
if ((neededDropinsDir != null) && !neededDropinsDir.exists()) {
copy {
from expectedDropinsDir
into neededDropinsDir
}
}
}
}
This should be fixed in 3.16.0-SNAPSHOT
.
Published in 3.16.0
.
Goomph 3.15.0 seems to place the branding files here:
<gradle build dir>/oomph-ide.app/Contents/Eclipse/dropins/com.diffplug.goomph.branding/...
... but the splash screen does not appear unless I copy the branding to the following location identified by the exception thrown by the
ideSetupWorkspace
task:<gradle build dir>/oomph-ide.app/Contents/MacOS/dropins/com.diffplug.goomph.branding/...
(There is no 'dropins' folder in
MacOS
at all).When splash image is custom branded the following appears when running the 'ideSetupWorkspace' task: