Added testnotmatchpattern that can be used in test:match git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@190026 13f79535-47bb-0310-9956-ffa450edef68
71 lines
2.3 KiB
XML
71 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
/*
|
|
* Copyright 2001-2004 The Apache Software Foundation.
|
|
*
|
|
* Licensed 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.
|
|
*/
|
|
-->
|
|
|
|
|
|
<document>
|
|
<properties>
|
|
<title>Maven test Plug-in Goals</title>
|
|
<author email="dion@apache.org">dIon Gillard</author>
|
|
</properties>
|
|
<body>
|
|
<goals>
|
|
<goal>
|
|
<name>test</name>
|
|
<description>Test the application</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:compile</name>
|
|
<description>Compile the TestCases and TestSuites</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:match</name>
|
|
<description>Execute all the tests matching the given 'testmatchpattern' variable
|
|
nd excluding those in 'testnotmatchpattern' variable</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:match-test</name>
|
|
<description>[deprecated] please use the test:match goal instead</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:prepare-filesystem</name>
|
|
<description>Create the needed directory structure</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:single</name>
|
|
<description>Execute a single test defined using the 'testcase' variable</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:single-test</name>
|
|
<description>[deprecated] please use the test:single goal instead</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:test</name>
|
|
<description>Test the application</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:test-resources</name>
|
|
<description>Copy any resources that must be present for run tests</description>
|
|
</goal>
|
|
<goal>
|
|
<name>test:ui</name>
|
|
<description>Starts the Swing TestRunner front end</description>
|
|
</goal>
|
|
</goals>
|
|
</body>
|
|
</document> |