blob: 4931ded8d9034d601b7af2ee024389f21a45833d [file] [log] [blame]
<!--
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.
-->
<model xmlns="http://modello.codehaus.org/MODELLO/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://modello.codehaus.org/MODELLO/1.0.0 http://modello.codehaus.org/xsd/modello-1.0.0.xsd"
xsd.namespace="http://maven.apache.org/verifications/1.0.0"
xsd.targetNamespace="http://maven.apache.org/verifications/1.0.0">
<id>verifications</id>
<name>Verifications</name>
<description><![CDATA[
Project-specific configuration file for the Verifier Plugin. It contains
definitions of the files and directories to be checked after an
integration test has run. It can also check for file content against
regular expressions.]]></description>
<defaults>
<default>
<key>package</key>
<value>org.apache.maven.plugin.verifier.model</value>
</default>
</defaults>
<classes>
<class rootElement="true" xml.tagName="verifications">
<name>Verifications</name>
<version>1.0.0</version>
<description>Root element of the verifications file.</description>
<fields>
<field>
<name>files</name>
<version>1.0.0</version>
<description><![CDATA[
List of files and directories to check.
]]></description>
<association>
<type>File</type>
<multiplicity>*</multiplicity>
</association>
</field>
</fields>
</class>
<class>
<name>File</name>
<version>1.0.0</version>
<fields>
<field>
<name>location</name>
<version>1.0.0</version>
<required>true</required>
<description><![CDATA[Location of the file or directory to check.]]></description>
<type>String</type>
</field>
<field>
<name>contains</name>
<version>1.0.0</version>
<description><![CDATA[Check the content against this regular expression.]]></description>
<required>false</required>
<type>String</type>
</field>
<field>
<name>exists</name>
<version>1.0.0</version>
<description><![CDATA[
When this is set to <code>true</code> the plugin checks that the
file or directory exists. When set to <code>false</code> it checks
that the file or directory does <strong>not</strong> exist.
]]></description>
<defaultValue>true</defaultValue>
<type>boolean</type>
</field>
</fields>
</class>
</classes>
</model>