diff options
author | Ashlee Young <ashlee@onosfw.com> | 2015-10-23 10:00:02 -0700 |
---|---|---|
committer | Ashlee Young <ashlee@onosfw.com> | 2015-10-23 10:00:02 -0700 |
commit | 753a6c60f47f3ac4f270005b65e9d6481de8eb68 (patch) | |
tree | 3d0a1ae3b4d994550f6614b417b991eee3eb8911 /framework/src/ant/apache-ant-1.9.6/manual/Tasks/verifyjar.html | |
parent | c62d20eb3b4620c06d833be06f50b2600d96dd42 (diff) |
Adding maven and ant source trees
Change-Id: I0a39b9add833a31b9c3f98d193983ae2f3a5a445
Signed-off-by: Ashlee Young <ashlee@onosfw.com>
Diffstat (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/verifyjar.html')
-rw-r--r-- | framework/src/ant/apache-ant-1.9.6/manual/Tasks/verifyjar.html | 145 |
1 files changed, 145 insertions, 0 deletions
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 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<html> + +<head> +<meta http-equiv="Content-Language" content="en-us"> +<link rel="stylesheet" type="text/css" href="../stylesheets/style.css"> +<title>VerifyJar Task</title> +</head> + +<body> + +<h2><a name="verifyjar">VerifyJar</a></h2> +<h3>Description</h3> +<p>Verifies JAR files with the <tt>jarsigner</tt> command line tool. +It will take a named file in the <tt>jar</tt> attribute. Nested paths are also +supported +</p> + + +<h3>Parameters</h3> +<table border="1" cellpadding="2" cellspacing="0"> + <tr> + <td valign="top"><b>Attribute</b></td> + <td valign="top"><b>Description</b></td> + <td align="center" valign="top"><b>Required</b></td> + </tr> + <tr> + <td valign="top">jar</td> + <td valign="top">the jar file to verify</td> + <td valign="top" align="center">Yes, unless nested paths have + been used.</td> + </tr> + <tr> + <td valign="top">alias</td> + <td valign="top">the alias to verify under</td> + <td valign="top" align="center">Yes.</td> + </tr> + <tr> + <td valign="top">storepass</td> + <td valign="top">password for keystore integrity.</td> + <td valign="top" align="center">Yes.</td> + </tr> + <tr> + <td valign="top">keystore</td> + <td valign="top">keystore location</td> + <td valign="top" align="center">No</td> + </tr> + <tr> + <td valign="top">storetype</td> + <td valign="top">keystore type</td> + <td valign="top" align="center">No</td> + </tr> + <tr> + <td valign="top">keypass</td> + <td valign="top">password for private key (if different)</td> + <td valign="top" align="center">No</td> + </tr> + <tr> + <td valign="top">certificates</td> + <td valign="top">(true | false) display information about certificates</td> + <td valign="top" align="center">No; default false</td> + </tr> + <tr> + <td valign="top">verbose</td> + <td valign="top">(true | false) verbose output when verifying</td> + <td valign="top" align="center">No; default false</td> + </tr> + <tr> + <td valign="top">strict</td> + <td valign="top">(true | false) strict checking when verifying.<br/><em>since Ant 1.9.1</em>.</td> + <td valign="top" align="center">No; default false</td> + </tr> + <tr> + <td valign="top">maxmemory</td> + <td valign="top">Specifies the maximum memory the jarsigner VM will use. Specified in the + style of standard java memory specs (e.g. 128m = 128 MBytes)</td> + <td valign="top" align="center">No</td> + </tr> + <tr> + <td valign="top">executable</td> + <td valign="top">Specify a particular <code>jarsigner</code> executable + to use in place of the default binary (found in the same JDK as + Apache Ant is running in).<br/> + Must support the same command line options as the Sun JDK + jarsigner command. + <em>since Ant 1.8.0</em>.</td> + <td align="center" valign="top">No</td> + </tr> +</table> +<h3>Parameters as nested elements</h3> +<table border="1" cellpadding="2" cellspacing="0"> + <tr> + <td valign="top"><b>Attribute</b></td> + <td valign="top"><b>Description</b></td> + <td align="center" valign="top"><b>Required</b></td> + </tr> + <tr> + <td valign="top">path</td> + <td valign="top">path of JAR files to verify. <em>since Ant 1.7</em></td> + <td valign="top" align="center">No</td> + </tr> + <tr> + <td valign="top">fileset</td> + <td valign="top">fileset of JAR files to verify. </td> + <td valign="top" align="center">No</td> + </tr> + <tr> + <td valign="top">sysproperty</td> + <td valign="top">JVM system properties, with the syntax of Ant + <a href="exec.html#env">environment variables</a> </td> + <td valign="top" align="center">No, and only one can be supplied</td> + </tr> + </table> + + +<h3>Examples</h3> + <blockquote><pre> +<verifyjar jar="${dist}/lib/ant.jar" +alias="apache-group" storepass="secret"/> +</pre></blockquote> +<p> + verifies the ant.jar with alias "apache-group" accessing the + keystore and private key via "secret" password. +</p> + + + +</body> +</html> + |