Verifier

Description

Runs the JBoss verifier in-VM on a bunch of EJBs.

If no basedir is specified, the project's base directory is used.

Note that since this is not a built-in task it must be declared with a taskdef tag in the build.xml file, like so:
<taskdef name="verifier" classname="Verifier"/>

Also note that for the time being the implementation of this task resides in the default package. This will most likely change sometime in the future.

Parameters

Attribute Description Required
basedir the directory from which to locate the files to verify. No
includes comma separated list of patterns of files that must be included. All files are included when omitted. No

Nested elements

fileset

A FileSet. All files specified in this FileSet will be verified.

Any number of fileset tags can be added to the body of the verify tag.

Examples

    <verifier>
	<fileset dir="/some/where">
	    <include name="foo-ejb.jar"/>
	</fileset>
    </verifier>
    <verifier basedir="."
              includes="test-ejb.jar">
	
	<fileset dir="../..">
	    <include name="bar-ejb.jar"/>
	</fileset>
    </verifier>

Copyright © 2001 Per Lewau <perle@lysator.liu.se>