blob: abbfec28c4d2ac136e6f9a7c4a11648b92a3a7f8 [file] [log] [blame]
------
Usage
------
Felix Knecht
------
2011-02-28
------
~~ 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.
~~ NOTE: For help with the syntax of this file, see:
~~ http://maven.apache.org/doxia/references/apt-format.html
MPT Maven plugin
* The <<<mpt:run>>> Goal
The <<<mpt:run>>> goal isn't bound to any phase. This goal runs the configured MPTs.
+-----
mvn mtp:run
+-----
* Configuring the MPT plugin
Since the MPT plugin doesn't executes automatically during the phases you may want
to put <<<executions>>> to the <<<configuration>>>.
+-----
<project>
...
<build>
<plugins>
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}>version>
<configuration>
<mailProtocolTests>
<port></port>
<host></host>
<shabang></shabang>
<scriptFile></scriptFile>
<addUsers>
<addUser>
<port></port>
<passwd></passwd>
<scriptText></scriptText>
<host></host>
<scriptFile></scriptFile>
</addUser>
<addUser>
<port></port>
<passwd></passwd>
<scriptText></scriptText>
<host></host>
<scriptFile></scriptFile>
</addUser>
...
</addUsers>
</mailProtocolTests>
</configuration>
<plugin>
</plugins>
</build>
...
</project>
+-----