Fixed svn properties (eol and keywords) that were not set for non-java files in my config.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@209763 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Vincent Massol 2005-07-08 13:17:26 +00:00
parent 07d8d8a972
commit c10680bdab
9 changed files with 293 additions and 293 deletions

View File

@ -1,55 +1,55 @@
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover-plugin-samples</artifactId> <artifactId>maven-clover-plugin-samples</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>maven-clover-plugin-sample-simple</artifactId> <artifactId>maven-clover-plugin-sample-simple</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Maven Clover Plugin Simple Sample</name> <name>Maven Clover Plugin Simple Sample</name>
<description>Maven Clover Plugin Simple Sample</description> <description>Maven Clover Plugin Simple Sample</description>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- to be removed --> <!-- to be removed -->
<dependency> <dependency>
<groupId>clover</groupId> <groupId>clover</groupId>
<artifactId>clover</artifactId> <artifactId>clover</artifactId>
<version>1.3.8</version> <version>1.3.8</version>
</dependency> </dependency>
</dependencies> </dependencies>
<reporting> <reporting>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover-plugin</artifactId> <artifactId>maven-clover-plugin</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</plugin> </plugin>
</plugins> </plugins>
</reporting> </reporting>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover-plugin</artifactId> <artifactId>maven-clover-plugin</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<targetPercentage>50</targetPercentage> <targetPercentage>50</targetPercentage>
</configuration> </configuration>
<goals> <goals>
<goal>check</goal> <goal>check</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,16 +1,16 @@
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover</artifactId> <artifactId>maven-clover</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>maven-clover-plugin-samples</artifactId> <artifactId>maven-clover-plugin-samples</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Maven Clover Plugin Samples</name> <name>Maven Clover Plugin Samples</name>
<description>Maven Clover Plugin Samples</description> <description>Maven Clover Plugin Samples</description>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<modules> <modules>
<module>maven-clover-plugin-sample-simple</module> <module>maven-clover-plugin-sample-simple</module>
</modules> </modules>
</project> </project>

View File

@ -1,51 +1,51 @@
<project> <project>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover</artifactId> <artifactId>maven-clover</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>maven-clover-plugin</artifactId> <artifactId>maven-clover-plugin</artifactId>
<packaging>maven-plugin</packaging> <packaging>maven-plugin</packaging>
<name>Maven Clover Plugin</name> <name>Maven Clover Plugin</name>
<description>Maven plugin for Clover</description> <description>Maven plugin for Clover</description>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId> <artifactId>maven-artifact</artifactId>
<version>2.0-alpha-3</version> <version>2.0-alpha-3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId> <artifactId>maven-plugin-api</artifactId>
<version>2.0-alpha-3</version> <version>2.0-alpha-3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId> <artifactId>maven-project</artifactId>
<version>2.0-alpha-3</version> <version>2.0-alpha-3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.maven.reporting</groupId> <groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-api</artifactId> <artifactId>maven-reporting-api</artifactId>
<version>2.0-alpha-3</version> <version>2.0-alpha-3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>clover</groupId> <groupId>clover</groupId>
<artifactId>clover</artifactId> <artifactId>clover</artifactId>
<version>1.3.8</version> <version>1.3.8</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>ant</groupId> <groupId>ant</groupId>
<artifactId>ant</artifactId> <artifactId>ant</artifactId>
<version>1.5.4</version> <version>1.5.4</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,21 +1,21 @@
<lifecycles> <lifecycles>
<lifecycle> <lifecycle>
<id>clover</id> <id>clover</id>
<phases> <phases>
<phase> <phase>
<id>generate-sources</id> <id>generate-sources</id>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<cloverOutputDirectory>${project.build.directory}/clover</cloverOutputDirectory> <cloverOutputDirectory>${project.build.directory}/clover</cloverOutputDirectory>
<cloverDatabase>${project.build.directory}/clover/clover.db</cloverDatabase> <cloverDatabase>${project.build.directory}/clover/clover.db</cloverDatabase>
</configuration> </configuration>
<goals> <goals>
<goal>instrument</goal> <goal>instrument</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</phase> </phase>
</phases> </phases>
</lifecycle> </lifecycle>
</lifecycles> </lifecycles>

View File

@ -1,15 +1,15 @@
<component-set> <component-set>
<!-- TODO: <!-- TODO:
- this should be generated using cdc - this should be generated using cdc
- need to configure the reports - need to configure the reports
- the hint should perhaps use a qualifier -> this is equivalent to how we must deal with plugins outside of the maven group ID - the hint should perhaps use a qualifier -> this is equivalent to how we must deal with plugins outside of the maven group ID
--> -->
<components> <components>
<component> <component>
<role>org.apache.maven.reporting.MavenReport</role> <role>org.apache.maven.reporting.MavenReport</role>
<role-hint>clover</role-hint> <role-hint>clover</role-hint>
<implementation>org.apache.maven.plugin.clover.CloverReportMojo</implementation> <implementation>org.apache.maven.plugin.clover.CloverReportMojo</implementation>
<instantiation-strategy>per-lookup</instantiation-strategy> <instantiation-strategy>per-lookup</instantiation-strategy>
</component> </component>
</components> </components>
</component-set> </component-set>

View File

@ -1,3 +1,3 @@
report.clover.name=Clover report.clover.name=Clover
report.clover.description=Report on test coverage report.clover.description=Report on test coverage
report.clover.title=Clover Results report.clover.title=Clover Results

View File

@ -1,3 +1,3 @@
report.clover.name=Clover report.clover.name=Clover
report.clover.description=Rapport sur la couverture de tests report.clover.description=Rapport sur la couverture de tests
report.clover.title=Résultats Clover report.clover.title=Résultats Clover

View File

@ -1,103 +1,103 @@
Product: Clover Product: Clover
License: Maven License, 0.x, 1.x License: Maven License, 0.x, 1.x
Issued: Sun Feb 20 2005 16:07:54 CST Issued: Sun Feb 20 2005 16:07:54 CST
Expiry: Mon Jan 30 2006 00:00:00 CST Expiry: Mon Jan 30 2006 00:00:00 CST
Key: cb1bdacca8bc16c87e3a54ba8 Key: cb1bdacca8bc16c87e3a54ba8
Name: Vincent Massol Name: Vincent Massol
Org: Maven Org: Maven
Certificate: AAACSW+Ow8B7/zEbxOMqqKwwrdpP+b9RI3QpJp1p5GYetnEZ1bTfFsNcI Certificate: AAACSW+Ow8B7/zEbxOMqqKwwrdpP+b9RI3QpJp1p5GYetnEZ1bTfFsNcI
BFgt6wjsr7mkJwsqpdgk/yEZJj3job+JBdaXy0D57q4LR5IvOBFb4CejKlB7R0tBLMtZB1 BFgt6wjsr7mkJwsqpdgk/yEZJj3job+JBdaXy0D57q4LR5IvOBFb4CejKlB7R0tBLMtZB1
z8E40a4RpZPEs1unqS5oRKOLDDsuZMK6fVZK9RnYiEzfIO6UjDvImCYDyjkq8SSYBJdTpP z8E40a4RpZPEs1unqS5oRKOLDDsuZMK6fVZK9RnYiEzfIO6UjDvImCYDyjkq8SSYBJdTpP
KHHttTJZrrTOMq/onTG48fHvG9PJns/HPb08BUDW+OhGX392JfAVPEJPR3tJ3kJbsdNe3K KHHttTJZrrTOMq/onTG48fHvG9PJns/HPb08BUDW+OhGX392JfAVPEJPR3tJ3kJbsdNe3K
DbyXxMdbmpVPTFD/p1UWP4Cm+zU6apE12fkU37zazJkv0Q1mB4tJSu103bmrK83fzu+OQj DbyXxMdbmpVPTFD/p1UWP4Cm+zU6apE12fkU37zazJkv0Q1mB4tJSu103bmrK83fzu+OQj
HD73nDmuu84w+7Wz6BkTwZ3Pgbru/ZBE0Kq+kRj6NrNxlW/DiEd4zB+AW7+Qy14jzsO+S3 HD73nDmuu84w+7Wz6BkTwZ3Pgbru/ZBE0Kq+kRj6NrNxlW/DiEd4zB+AW7+Qy14jzsO+S3
W1eBP1QQz88lSku5Vsdlezr9RI3QpYckovj9d43Rdl/GKLKVBMQFrzvg86OLtkp4kqZRa0 W1eBP1QQz88lSku5Vsdlezr9RI3QpYckovj9d43Rdl/GKLKVBMQFrzvg86OLtkp4kqZRa0
6P9INP30s+9c1JaZikH7732AANCtuALXuLGyoNd9hstErAhNgwvwAI1cpY7IeAvn/XgW5R 6P9INP30s+9c1JaZikH7732AANCtuALXuLGyoNd9hstErAhNgwvwAI1cpY7IeAvn/XgW5R
9MvPLTNa0La7aN4umT2tlUWLJULQ5XfI5TYO5m1S8TVgIbN74fPLj/snfZ+/CNJ79v2SOt 9MvPLTNa0La7aN4umT2tlUWLJULQ5XfI5TYO5m1S8TVgIbN74fPLj/snfZ+/CNJ79v2SOt
pGR/T1bZCZ8f+G79hUWSK2zZmbvzsrGEekROxW3ZH4QOsMYdDKWbDO2PJPp9ErbWTnoywC pGR/T1bZCZ8f+G79hUWSK2zZmbvzsrGEekROxW3ZH4QOsMYdDKWbDO2PJPp9ErbWTnoywC
fr3+03UmSok12cAN7xTm5Pl3jLQmT4Z1VoEc8RGrbvVHt6abF3h72zjPGov0xmP/XxKNjD fr3+03UmSok12cAN7xTm5Pl3jLQmT4Z1VoEc8RGrbvVHt6abF3h72zjPGov0xmP/XxKNjD
Dl2cUDIupIJHlit5kJn5pLN0UT6chGtCFewIgXb4OHJQofIsVe4/cJ/PI+oEiBn+LUsWdR Dl2cUDIupIJHlit5kJn5pLN0UT6chGtCFewIgXb4OHJQofIsVe4/cJ/PI+oEiBn+LUsWdR
V+N1F7iPpwLb5bqcbkDxH4mWlDlXAjzRtTR/OkoH80Gehmmg1Om/jUbTp15rrEmaamjWB0 V+N1F7iPpwLb5bqcbkDxH4mWlDlXAjzRtTR/OkoH80Gehmmg1Om/jUbTp15rrEmaamjWB0
4HWNlAeZDDpM3xtu1UgIhYPAkm4b9kurZBLJVB5dHHCh3wz7BRPPxhbN7Ik 4HWNlAeZDDpM3xtu1UgIhYPAkm4b9kurZBLJVB5dHHCh3wz7BRPPxhbN7Ik
License Agreement: CENQUA CLOVER EVALUATION SOFTWARE LICENSE AGREEMENT License Agreement: CENQUA CLOVER EVALUATION SOFTWARE LICENSE AGREEMENT
CENQUA IS WILLING TO LICENSE CLOVER AND ACCOMPANYING DOCUMENTATION CENQUA IS WILLING TO LICENSE CLOVER AND ACCOMPANYING DOCUMENTATION
(THE "SOFTWARE") TO YOU (THE "EVALUATOR") FOR EVALUATION PURPOSES ONLY (THE "SOFTWARE") TO YOU (THE "EVALUATOR") FOR EVALUATION PURPOSES ONLY
UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS OF THIS LICENSE UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS OF THIS LICENSE
AGREEMENT. PLEASE READ THESE TERMS CAREFULLY BEFORE INSTALLING OR AGREEMENT. PLEASE READ THESE TERMS CAREFULLY BEFORE INSTALLING OR
USING THE SOFTWARE. BY INSTALLING OR USING THE SOFTWARE, YOU ARE USING THE SOFTWARE. BY INSTALLING OR USING THE SOFTWARE, YOU ARE
CONSENTING TO BE BOUND BY AND ARE BECOMING A PARTY TO THIS AGREEMENT. CONSENTING TO BE BOUND BY AND ARE BECOMING A PARTY TO THIS AGREEMENT.
1. Software: The licensed Software is "Clover Evaluation Edition". 1. Software: The licensed Software is "Clover Evaluation Edition".
2. Grant of License: Cortex eBusiness Pty Ltd ("Cenqua") hereby 2. Grant of License: Cortex eBusiness Pty Ltd ("Cenqua") hereby
grants to Evaluator, for 30 days (the "Evaluation Period") grants to Evaluator, for 30 days (the "Evaluation Period")
following the execution of this Agreement (the "Agreement"), a following the execution of this Agreement (the "Agreement"), a
limited, nontransferable, nonexclusive, nonsublicensable, limited, nontransferable, nonexclusive, nonsublicensable,
revocable, worldwide license to use the Software for the purposes revocable, worldwide license to use the Software for the purposes
of internal evaluation and testing for suitability for commercial of internal evaluation and testing for suitability for commercial
licensing ("Evaluation") by Evaluator. Title to the Software shall licensing ("Evaluation") by Evaluator. Title to the Software shall
remain with Cenqua at all times. remain with Cenqua at all times.
3. Exclusions: Evaluator shall not: a. copy any part of the Software 3. Exclusions: Evaluator shall not: a. copy any part of the Software
except to make one copy for back-up purposes only; b. reverse except to make one copy for back-up purposes only; b. reverse
compile or reverse assemble any portion of the Software where the compile or reverse assemble any portion of the Software where the
source code is not freely accessible; c. distribute, disclose, source code is not freely accessible; c. distribute, disclose,
market, rent, lease, or transfer the Software; d. export the market, rent, lease, or transfer the Software; d. export the
Software; or e. allow others to make or obtain copies of the Software; or e. allow others to make or obtain copies of the
Software. Software.
4. Support: Cenqua may, during the Evaluation Period, make 4. Support: Cenqua may, during the Evaluation Period, make
available updates, enhancements, and/or modifications to the available updates, enhancements, and/or modifications to the
Software and may provide such updates to Evaluator, but is under no Software and may provide such updates to Evaluator, but is under no
obligation to do so. The provision by Cenqua to Evaluator of obligation to do so. The provision by Cenqua to Evaluator of
such updates, enhancements, and/or modifications to the Software such updates, enhancements, and/or modifications to the Software
shall be subject to all terms and conditions of this Agreement and shall be subject to all terms and conditions of this Agreement and
shall expire at the end of the Evaluation Period. shall expire at the end of the Evaluation Period.
5. Specific Disclaimer of Warranty and Limitation of Liability: 5. Specific Disclaimer of Warranty and Limitation of Liability:
THE SOFTWARE IS PROVIDED WITHOUT WARRANTY OF ANY KIND. CENQUA THE SOFTWARE IS PROVIDED WITHOUT WARRANTY OF ANY KIND. CENQUA
DISCLAIMS ALL WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT DISCLAIMS ALL WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A LIMITED TO THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE. CENQUA WILL NOT BE LIABLE FOR ANY DAMAGES PARTICULAR PURPOSE. CENQUA WILL NOT BE LIABLE FOR ANY DAMAGES
ASSOCIATED WITH THE SOFTWARE, INCLUDING, WITHOUT LIMITATION, ORDINARY, ASSOCIATED WITH THE SOFTWARE, INCLUDING, WITHOUT LIMITATION, ORDINARY,
INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OF ANY KIND, INCLUDING INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OF ANY KIND, INCLUDING
BUT NOT LIMITED TO DAMAGES RELATING TO LOST DATA OR LOST PROFITS, EVEN BUT NOT LIMITED TO DAMAGES RELATING TO LOST DATA OR LOST PROFITS, EVEN
IF CENQUA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IF CENQUA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
6. Termination: Evaluator's license to use the Software shall 6. Termination: Evaluator's license to use the Software shall
terminate on the earlier of (i) written notice by either Cenqua terminate on the earlier of (i) written notice by either Cenqua
or Evaluator, or (ii) expiration of the Evaluation Period. Upon or Evaluator, or (ii) expiration of the Evaluation Period. Upon
termination of the license as provided above, Evaluator shall termination of the license as provided above, Evaluator shall
promptly destroy the Software and any back-up copy of the Software promptly destroy the Software and any back-up copy of the Software
made during the Evaluation Period. Evaluator shall also promptly made during the Evaluation Period. Evaluator shall also promptly
return all materials provided by Cenqua in connection with the return all materials provided by Cenqua in connection with the
Software. Software.
7. Warranties and Representations; Indemnification. Evaluator warrants 7. Warranties and Representations; Indemnification. Evaluator warrants
and represents that Evaluator's actions with regard to the Software and represents that Evaluator's actions with regard to the Software
will be in compliance with all applicable laws; and Evaluator will will be in compliance with all applicable laws; and Evaluator will
indemnify, defend, and hold Cenqua harmless from and against any indemnify, defend, and hold Cenqua harmless from and against any
and all liabilities, damages, losses, claims, costs, and expenses and all liabilities, damages, losses, claims, costs, and expenses
(including legal fees) arising out of or resulting from Evaluator's (including legal fees) arising out of or resulting from Evaluator's
failure to observe the use restrictions set forth herein. failure to observe the use restrictions set forth herein.
8. Governing Law: This Agreement shall be governed by the laws of New 8. Governing Law: This Agreement shall be governed by the laws of New
South Wales, Australia. South Wales, Australia.
9.Independent Contractors; Assignment: The parties are independent 9.Independent Contractors; Assignment: The parties are independent
contractors with respect to each other, and nothing in this contractors with respect to each other, and nothing in this
Agreement shall be construed as creating an employer-employee Agreement shall be construed as creating an employer-employee
relationship, a partnership, agency relationship or a joint venture relationship, a partnership, agency relationship or a joint venture
between the parties. This Agreement is not assignable or between the parties. This Agreement is not assignable or
transferable by Evaluator. transferable by Evaluator.
10.Entire Agreement: This Agreement constitutes the entire agreement 10.Entire Agreement: This Agreement constitutes the entire agreement
between the parties concerning Evaluator's use of the between the parties concerning Evaluator's use of the
Software. This Agreement supersedes any prior verbal understanding Software. This Agreement supersedes any prior verbal understanding
between the parties and any Evaluator purchase order or other between the parties and any Evaluator purchase order or other
ordering document, regardless of whether such document is received ordering document, regardless of whether such document is received
by Cenqua before or after execution of this Agreement. This by Cenqua before or after execution of this Agreement. This
Agreement may be amended only in writing by Cenqua. Agreement may be amended only in writing by Cenqua.

View File

@ -1,26 +1,26 @@
<model> <model>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover</artifactId> <artifactId>maven-clover</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Maven Clover Plugin Parent</name> <name>Maven Clover Plugin Parent</name>
<description>Maven Clover Plugin Parent</description> <description>Maven Clover Plugin Parent</description>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<inceptionYear>2005</inceptionYear> <inceptionYear>2005</inceptionYear>
<developers> <developers>
<developer> <developer>
<id>vmassol</id> <id>vmassol</id>
<name>Vincent Massol</name> <name>Vincent Massol</name>
<email>vmassol@apache.org</email> <email>vmassol@apache.org</email>
<organization>Apache Software Foundation</organization> <organization>Apache Software Foundation</organization>
<roles> <roles>
<role>Architect</role> <role>Architect</role>
<role>Release Manager</role> <role>Release Manager</role>
</roles> </roles>
</developer> </developer>
</developers> </developers>
<modules> <modules>
<module>maven-clover-plugin</module> <module>maven-clover-plugin</module>
<module>maven-clover-plugin-samples</module> <module>maven-clover-plugin-samples</module>
</modules> </modules>
</model> </model>