summaryrefslogtreecommitdiff
path: root/java/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-12-22 15:52:47 +0100
committerJose <jose@zeroc.com>2014-12-22 15:52:47 +0100
commitc8ae4ce650128fe6d539ae3fe093d40d1d9d3e26 (patch)
treec92685620dbcc7754f6654b4db68bf1705afb4ca /java/src
parentFixed (ICE-6211) - IceSSL assertion on AMZN (diff)
downloadice-c8ae4ce650128fe6d539ae3fe093d40d1d9d3e26.tar.bz2
ice-c8ae4ce650128fe6d539ae3fe093d40d1d9d3e26.tar.xz
ice-c8ae4ce650128fe6d539ae3fe093d40d1d9d3e26.zip
Fixed (ICE-6140) - icegridgui manifest problem
Diffstat (limited to 'java/src')
-rw-r--r--java/src/IceGridGUI/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/build.gradle b/java/src/IceGridGUI/build.gradle
index f4f6d72374c..532d72e8092 100644
--- a/java/src/IceGridGUI/build.gradle
+++ b/java/src/IceGridGUI/build.gradle
@@ -105,7 +105,7 @@ assemble.dependsOn(updateManifest)
if(macosx)
{
def appName = "IceGrid Admin"
- task bundleapp(dependsOn: proguardJar) << {
+ task bundleapp(dependsOn: updateManifest) << {
ant.taskdef(name: 'bundleapp',
classname: 'com.oracle.appbundler.AppBundlerTask',
classpath: configurations.bundleapp.asPath)
@@ -146,7 +146,7 @@ clean {
delete("${libDir}/IceGrid Admin.app")
}
-task copyJars(type: Copy, dependsOn: proguardJar) {
+task copyJars(type: Copy, dependsOn: updateManifest) {
from new File("${libDir}/${jarName}")
into "${DESTDIR}${prefix}/lib"
}