From 753a6c60f47f3ac4f270005b65e9d6481de8eb68 Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:00:02 -0700 Subject: Adding maven and ant source trees Change-Id: I0a39b9add833a31b9c3f98d193983ae2f3a5a445 Signed-off-by: Ashlee Young --- .../apache-ant-1.9.6/manual/Tasks/verifyjar.html | 145 +++++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/verifyjar.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/verifyjar.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/verifyjar.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/verifyjar.html new file mode 100644 index 00000000..4be27881 --- /dev/null +++ b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/verifyjar.html @@ -0,0 +1,145 @@ + + + + + + +VerifyJar Task + + + + +

VerifyJar

+

Description

+

Verifies JAR files with the jarsigner command line tool. +It will take a named file in the jar attribute. Nested paths are also +supported +

+ + +

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
jarthe jar file to verifyYes, unless nested paths have + been used.
aliasthe alias to verify underYes.
storepasspassword for keystore integrity.Yes.
keystorekeystore locationNo
storetypekeystore typeNo
keypasspassword for private key (if different)No
certificates(true | false) display information about certificatesNo; default false
verbose(true | false) verbose output when verifyingNo; default false
strict(true | false) strict checking when verifying.
since Ant 1.9.1.
No; default false
maxmemorySpecifies the maximum memory the jarsigner VM will use. Specified in the + style of standard java memory specs (e.g. 128m = 128 MBytes)No
executableSpecify a particular jarsigner executable + to use in place of the default binary (found in the same JDK as + Apache Ant is running in).
+ Must support the same command line options as the Sun JDK + jarsigner command. + since Ant 1.8.0.
No
+

Parameters as nested elements

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
pathpath of JAR files to verify. since Ant 1.7No
filesetfileset of JAR files to verify. No
syspropertyJVM system properties, with the syntax of Ant + environment variables No, and only one can be supplied
+ + +

Examples

+
+<verifyjar jar="${dist}/lib/ant.jar"
+alias="apache-group" storepass="secret"/>
+
+

+ verifies the ant.jar with alias "apache-group" accessing the + keystore and private key via "secret" password. +

+ + + + + + -- cgit 1.2.3-korg