summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@google.com>2014-08-19 11:48:00 -0700
committerJustin Morey <jmorey@google.com>2014-11-12 17:19:10 +0000
commitaad40a31cbf69c508cfe0c35015753b8f1ac5e5e (patch)
treefe4ee99c45559524202ca8af12391e441397d1a7
parentcf3bfee8d2c739d13142b7151ca3a59c3a2b4c21 (diff)
downloadplatform_external_jarjar-aad40a31cbf69c508cfe0c35015753b8f1ac5e5e.tar.gz
platform_external_jarjar-aad40a31cbf69c508cfe0c35015753b8f1ac5e5e.tar.bz2
platform_external_jarjar-aad40a31cbf69c508cfe0c35015753b8f1ac5e5e.zip
Fix manifest access.
Implicit use of the jar task does not work in Gradle 2.0 anymore. Change-Id: I1efc1f2fafd5d43b1fda00faf705ddf6cbc3a78f (cherry picked from commit b9c9541421a9b7ffae2b0de6679438741ae9bbfe)
-rw-r--r--build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index d95fb2e..1a061f2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -22,7 +22,7 @@ sourceSets {
resources.srcDirs = ['res']
}
}
-manifest.from file('manifest.txt')
+jar.manifest.from file('manifest.txt')
dependencies {
compile files('lib/apache-ant-1.9.4.jar')