alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Ant example source code file (issigned.xml)

This example Ant source code file (issigned.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Ant tags/keywords

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

 

new blog posts

 

Copyright 1998-2021 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.