|
Ant example source code file (issigned.xml)
The issigned.xml source code
<project default="all">
<target name="pass" description="check if a name of pass is ok">
<fail message="name of pass not seen in the signed pass.jar">
<condition>
<not>
<issigned file="jars/pass.jar" name="pass"/>
</not>
</condition>
</fail>
</target>
<target name="password" description="check if a name of password is *not* ok">
<fail message="name of password is seen in the signed pass.jar">
<condition>
<issigned file="jars/pass.jar" name="password"/>
</condition>
</fail>
</target>
<target name="apassword" description="check if the 8 letter shorting works">
<fail message="8 letter shorting does not work 1">
<condition>
<not>
<issigned file="jars/apassword.jar" name="apasswor"/>
</not>
</condition>
</fail>
<fail message="8 letter shorting does not work 2">
<condition>
<not>
<issigned file="jars/apassword.jar" name="apassword"/>
</not>
</condition>
</fail>
</target>
<target name="allsigned" description="check the signed / not signed status">
<fail message="pass.jar should be signed">
<condition>
<not>
<issigned file="jars/pass.jar"/>
</not>
</condition>
</fail>
<fail message="nosign.jar should not be signed">
<condition>
<issigned file="jars/nosign.jar"/>
</condition>
</fail>
<fail message="apassword.jar should be signed">
<condition>
<not>
<issigned file="jars/apassword.jar"/>
</not>
</condition>
</fail>
</target>
</project>
Other Ant examples (source code examples)Here is a short list of links related to this Ant issigned.xml source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.