pom.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License. See accompanying LICENSE file.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <groupId>org.apache.hadoop</groupId>
  18. <artifactId>hadoop-main</artifactId>
  19. <version>3.0.0-SNAPSHOT</version>
  20. <description>Apache Hadoop Main</description>
  21. <name>Apache Hadoop Main</name>
  22. <packaging>pom</packaging>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.cenqua.clover</groupId>
  27. <artifactId>clover</artifactId>
  28. <!-- Use the version needed by maven-clover-plugin -->
  29. <version>3.0.2</version>
  30. </dependency>
  31. </dependencies>
  32. </dependencyManagement>
  33. <distributionManagement>
  34. <repository>
  35. <id>${distMgmtStagingId}</id>
  36. <name>${distMgmtStagingName}</name>
  37. <url>${distMgmtStagingUrl}</url>
  38. </repository>
  39. <snapshotRepository>
  40. <id>${distMgmtSnapshotsId}</id>
  41. <name>${distMgmtSnapshotsName}</name>
  42. <url>${distMgmtSnapshotsUrl}</url>
  43. </snapshotRepository>
  44. <site>
  45. <id>apache.website</id>
  46. <url>scpexe://people.apache.org/www/hadoop.apache.org/docs/r${project.version}</url>
  47. </site>
  48. </distributionManagement>
  49. <repositories>
  50. <repository>
  51. <id>${distMgmtSnapshotsId}</id>
  52. <name>${distMgmtSnapshotsName}</name>
  53. <url>${distMgmtSnapshotsUrl}</url>
  54. </repository>
  55. <repository>
  56. <id>repository.jboss.org</id>
  57. <url>http://repository.jboss.org/nexus/content/groups/public/</url>
  58. <snapshots>
  59. <enabled>false</enabled>
  60. </snapshots>
  61. </repository>
  62. </repositories>
  63. <licenses>
  64. <license>
  65. <name>Apache License, Version 2.0</name>
  66. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  67. </license>
  68. </licenses>
  69. <organization>
  70. <name>Apache Software Foundation</name>
  71. <url>http://www.apache.org</url>
  72. </organization>
  73. <properties>
  74. <distMgmtSnapshotsId>apache.snapshots.https</distMgmtSnapshotsId>
  75. <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
  76. <distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
  77. <distMgmtStagingId>apache.staging.https</distMgmtStagingId>
  78. <distMgmtStagingName>Apache Release Distribution Repository</distMgmtStagingName>
  79. <distMgmtStagingUrl>https://repository.apache.org/service/local/staging/deploy/maven2</distMgmtStagingUrl>
  80. <!-- platform encoding override -->
  81. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  82. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  83. <!-- maven plugin versions -->
  84. <maven-deploy-plugin.version>2.8.1</maven-deploy-plugin.version>
  85. <maven-site-plugin.version>3.4</maven-site-plugin.version>
  86. <maven-antrun-plugin.version>1.7</maven-antrun-plugin.version>
  87. <maven-assembly-plugin.version>2.4</maven-assembly-plugin.version>
  88. <maven-dependency-plugin.version>2.8</maven-dependency-plugin.version>
  89. <maven-enforcer-plugin.version>1.3.1</maven-enforcer-plugin.version>
  90. <maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version>
  91. <apache-rat-plugin.version>0.10</apache-rat-plugin.version>
  92. <wagon-ssh.version>1.0</wagon-ssh.version>
  93. <maven-clover2-plugin.version>3.3.0</maven-clover2-plugin.version>
  94. <maven-bundle-plugin.version>2.5.0</maven-bundle-plugin.version>
  95. <lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
  96. </properties>
  97. <modules>
  98. <module>hadoop-project</module>
  99. <module>hadoop-project-dist</module>
  100. <module>hadoop-assemblies</module>
  101. <module>hadoop-maven-plugins</module>
  102. <module>hadoop-common-project</module>
  103. <module>hadoop-hdfs-project</module>
  104. <module>hadoop-yarn-project</module>
  105. <module>hadoop-mapreduce-project</module>
  106. <module>hadoop-tools</module>
  107. <module>hadoop-dist</module>
  108. <module>hadoop-client</module>
  109. <module>hadoop-minicluster</module>
  110. </modules>
  111. <build>
  112. <pluginManagement>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-dependency-plugin</artifactId>
  117. <version>${maven-dependency-plugin.version}</version>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-enforcer-plugin</artifactId>
  122. <version>${maven-enforcer-plugin.version}</version>
  123. <configuration>
  124. <rules>
  125. <requireMavenVersion>
  126. <version>[3.0.2,)</version>
  127. </requireMavenVersion>
  128. <requireJavaVersion>
  129. <version>[1.7,)</version>
  130. </requireJavaVersion>
  131. </rules>
  132. </configuration>
  133. </plugin>
  134. <plugin>
  135. <groupId>org.apache.maven.plugins</groupId>
  136. <artifactId>maven-assembly-plugin</artifactId>
  137. <version>${maven-assembly-plugin.version}</version>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-deploy-plugin</artifactId>
  142. <version>${maven-deploy-plugin.version}</version>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.apache.rat</groupId>
  146. <artifactId>apache-rat-plugin</artifactId>
  147. <version>${apache-rat-plugin.version}</version>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-antrun-plugin</artifactId>
  152. <version>${maven-antrun-plugin.version}</version>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-site-plugin</artifactId>
  157. <version>${maven-site-plugin.version}</version>
  158. <dependencies>
  159. <dependency><!-- add support for ssh/scp -->
  160. <groupId>org.apache.maven.wagon</groupId>
  161. <artifactId>wagon-ssh</artifactId>
  162. <version>${wagon-ssh.version}</version>
  163. </dependency>
  164. </dependencies>
  165. </plugin>
  166. <!--This plugin's configuration is used to store Eclipse m2e settings only.
  167. It has no influence on the Maven build itself.-->
  168. <plugin>
  169. <groupId>org.eclipse.m2e</groupId>
  170. <artifactId>lifecycle-mapping</artifactId>
  171. <version>${lifecycle-mapping.version}</version>
  172. <configuration>
  173. <lifecycleMappingMetadata>
  174. <pluginExecutions>
  175. <pluginExecution>
  176. <pluginExecutionFilter>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-antrun-plugin</artifactId>
  179. <versionRange>[1.7,)</versionRange>
  180. <goals>
  181. <goal>run</goal>
  182. </goals>
  183. </pluginExecutionFilter>
  184. <action>
  185. <ignore></ignore>
  186. </action>
  187. </pluginExecution>
  188. <pluginExecution>
  189. <pluginExecutionFilter>
  190. <groupId>org.apache.maven.plugins</groupId>
  191. <artifactId>maven-resources-plugin</artifactId>
  192. <versionRange>[2.2,)</versionRange>
  193. <goals>
  194. <goal>testResources</goal>
  195. <goal>resources</goal>
  196. </goals>
  197. </pluginExecutionFilter>
  198. <action>
  199. <ignore></ignore>
  200. </action>
  201. </pluginExecution>
  202. <pluginExecution>
  203. <pluginExecutionFilter>
  204. <groupId>org.apache.avro</groupId>
  205. <artifactId>avro-maven-plugin</artifactId>
  206. <versionRange>[1.5.3,)</versionRange>
  207. <goals>
  208. <goal>schema</goal>
  209. <goal>protocol</goal>
  210. </goals>
  211. </pluginExecutionFilter>
  212. <action>
  213. <ignore></ignore>
  214. </action>
  215. </pluginExecution>
  216. <pluginExecution>
  217. <pluginExecutionFilter>
  218. <groupId>org.codehaus.mojo.jspc</groupId>
  219. <artifactId>jspc-maven-plugin</artifactId>
  220. <versionRange>[2.0-alpha-3,)</versionRange>
  221. <goals>
  222. <goal>compile</goal>
  223. </goals>
  224. </pluginExecutionFilter>
  225. <action>
  226. <ignore></ignore>
  227. </action>
  228. </pluginExecution>
  229. <pluginExecution>
  230. <pluginExecutionFilter>
  231. <groupId>org.apache.maven.plugins</groupId>
  232. <artifactId>maven-dependency-plugin</artifactId>
  233. <versionRange>[2.4,)</versionRange>
  234. <goals>
  235. <goal>copy-dependencies</goal>
  236. <goal>build-classpath</goal>
  237. </goals>
  238. </pluginExecutionFilter>
  239. <action>
  240. <ignore></ignore>
  241. </action>
  242. </pluginExecution>
  243. <pluginExecution>
  244. <pluginExecutionFilter>
  245. <groupId>org.codehaus.mojo</groupId>
  246. <artifactId>exec-maven-plugin</artifactId>
  247. <versionRange>[1.2,)</versionRange>
  248. <goals>
  249. <goal>exec</goal>
  250. </goals>
  251. </pluginExecutionFilter>
  252. <action>
  253. <ignore></ignore>
  254. </action>
  255. </pluginExecution>
  256. <pluginExecution>
  257. <pluginExecutionFilter>
  258. <groupId>org.apache.maven.plugins</groupId>
  259. <artifactId>maven-jar-plugin</artifactId>
  260. <versionRange>[2.3.1,)</versionRange>
  261. <goals>
  262. <goal>test-jar</goal>
  263. </goals>
  264. </pluginExecutionFilter>
  265. <action>
  266. <ignore></ignore>
  267. </action>
  268. </pluginExecution>
  269. </pluginExecutions>
  270. </lifecycleMappingMetadata>
  271. </configuration>
  272. </plugin>
  273. <plugin>
  274. <groupId>com.atlassian.maven.plugins</groupId>
  275. <artifactId>maven-clover2-plugin</artifactId>
  276. <version>${maven-clover2-plugin.version}</version>
  277. </plugin>
  278. <plugin>
  279. <groupId>org.apache.felix</groupId>
  280. <artifactId>maven-bundle-plugin</artifactId>
  281. <version>${maven-bundle-plugin.version}</version>
  282. </plugin>
  283. </plugins>
  284. </pluginManagement>
  285. <plugins>
  286. <plugin>
  287. <groupId>org.apache.maven.plugins</groupId>
  288. <artifactId>maven-enforcer-plugin</artifactId>
  289. <inherited>false</inherited>
  290. <executions>
  291. <execution>
  292. <id>clean</id>
  293. <goals>
  294. <goal>enforce</goal>
  295. </goals>
  296. <phase>pre-clean</phase>
  297. </execution>
  298. <execution>
  299. <id>default</id>
  300. <goals>
  301. <goal>enforce</goal>
  302. </goals>
  303. <phase>validate</phase>
  304. </execution>
  305. <execution>
  306. <id>site</id>
  307. <goals>
  308. <goal>enforce</goal>
  309. </goals>
  310. <phase>pre-site</phase>
  311. </execution>
  312. </executions>
  313. </plugin>
  314. <plugin>
  315. <groupId>org.apache.rat</groupId>
  316. <artifactId>apache-rat-plugin</artifactId>
  317. <configuration>
  318. <excludes>
  319. <exclude>.gitattributes</exclude>
  320. <exclude>.gitignore</exclude>
  321. <exclude>.git/**</exclude>
  322. <exclude>.idea/**</exclude>
  323. <exclude>**/build/**</exclude>
  324. </excludes>
  325. </configuration>
  326. </plugin>
  327. <plugin>
  328. <artifactId>maven-site-plugin</artifactId>
  329. <executions>
  330. <execution>
  331. <id>attach-descriptor</id>
  332. <goals>
  333. <goal>attach-descriptor</goal>
  334. </goals>
  335. <configuration>
  336. <generateReports>true</generateReports>
  337. </configuration>
  338. </execution>
  339. </executions>
  340. </plugin>
  341. <plugin>
  342. <groupId>org.apache.felix</groupId>
  343. <artifactId>maven-bundle-plugin</artifactId>
  344. <inherited>true</inherited>
  345. <extensions>true</extensions>
  346. </plugin>
  347. </plugins>
  348. </build>
  349. <reporting>
  350. <excludeDefaults>true</excludeDefaults>
  351. <plugins>
  352. <plugin>
  353. <groupId>org.apache.maven.plugins</groupId>
  354. <artifactId>maven-javadoc-plugin</artifactId>
  355. <version>${maven-javadoc-plugin.version}</version>
  356. <inherited>false</inherited>
  357. <reportSets>
  358. <reportSet>
  359. <id>aggregate</id>
  360. <configuration>
  361. <maxmemory>1024m</maxmemory>
  362. <linksource>true</linksource>
  363. <quiet>true</quiet>
  364. <verbose>false</verbose>
  365. <source>${maven.compile.source}</source>
  366. <charset>${maven.compile.encoding}</charset>
  367. <reportOutputDirectory>${project.build.directory}/site</reportOutputDirectory>
  368. <destDir>hadoop-project/api</destDir>
  369. <!-- Non-public APIs -->
  370. <excludePackageNames>org.apache.hadoop.authentication*,org.apache.hadoop.mapreduce.v2.proto,org.apache.hadoop.yarn.proto,org.apache.hadoop.yarn.server*,org.apache.hadoop.yarn.webapp*</excludePackageNames>
  371. <groups>
  372. <group>
  373. <title>Common</title>
  374. <packages>org.apache.hadoop*</packages>
  375. </group>
  376. <group>
  377. <title>HDFS</title>
  378. <packages>org.apache.hadoop.hdfs*</packages>
  379. </group>
  380. <group>
  381. <title>MapReduce</title>
  382. <packages>org.apache.hadoop.mapred*</packages>
  383. </group>
  384. <group>
  385. <title>YARN</title>
  386. <packages>org.apache.hadoop.yarn*</packages>
  387. </group>
  388. </groups>
  389. <doclet>org.apache.hadoop.classification.tools.IncludePublicAnnotationsStandardDoclet</doclet>
  390. <docletArtifacts>
  391. <docletArtifact>
  392. <groupId>org.apache.hadoop</groupId>
  393. <artifactId>hadoop-annotations</artifactId>
  394. <version>${project.version}</version>
  395. </docletArtifact>
  396. </docletArtifacts>
  397. <useStandardDocletOptions>true</useStandardDocletOptions>
  398. <!-- switch on dependency-driven aggregation -->
  399. <includeDependencySources>false</includeDependencySources>
  400. <dependencySourceIncludes>
  401. <!-- include ONLY dependencies I control -->
  402. <dependencySourceInclude>org.apache.hadoop:hadoop-annotations</dependencySourceInclude>
  403. </dependencySourceIncludes>
  404. </configuration>
  405. <reports>
  406. <report>aggregate</report>
  407. </reports>
  408. </reportSet>
  409. </reportSets>
  410. </plugin>
  411. <plugin>
  412. <groupId>org.apache.maven.plugins</groupId>
  413. <artifactId>maven-dependency-plugin</artifactId>
  414. <version>${maven-dependency-plugin.version}</version>
  415. <reportSets>
  416. <reportSet>
  417. <reports>
  418. <report>analyze-report</report>
  419. </reports>
  420. </reportSet>
  421. </reportSets>
  422. </plugin>
  423. </plugins>
  424. </reporting>
  425. <profiles>
  426. <profile>
  427. <id>src</id>
  428. <activation>
  429. <activeByDefault>false</activeByDefault>
  430. </activation>
  431. <build>
  432. <plugins>
  433. <plugin>
  434. <groupId>org.apache.maven.plugins</groupId>
  435. <artifactId>maven-assembly-plugin</artifactId>
  436. <inherited>false</inherited>
  437. <executions>
  438. <execution>
  439. <id>src-dist</id>
  440. <phase>package</phase>
  441. <goals>
  442. <goal>single</goal>
  443. </goals>
  444. <configuration>
  445. <appendAssemblyId>false</appendAssemblyId>
  446. <attach>false</attach>
  447. <finalName>hadoop-${project.version}-src</finalName>
  448. <outputDirectory>hadoop-dist/target</outputDirectory>
  449. <!-- Not using descriptorRef and hadoop-assembly dependency -->
  450. <!-- to avoid making hadoop-main to depend on a module -->
  451. <descriptors>
  452. <descriptor>hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml</descriptor>
  453. </descriptors>
  454. </configuration>
  455. </execution>
  456. </executions>
  457. </plugin>
  458. <plugin>
  459. <groupId>org.apache.maven.plugins</groupId>
  460. <artifactId>maven-antrun-plugin</artifactId>
  461. <inherited>false</inherited>
  462. <executions>
  463. <execution>
  464. <id>src-dist-msg</id>
  465. <phase>package</phase>
  466. <goals>
  467. <goal>run</goal>
  468. </goals>
  469. <configuration>
  470. <target>
  471. <echo/>
  472. <echo>Hadoop source tar available at: ${basedir}/hadoop-dist/target/hadoop-${project.version}-src.tar.gz</echo>
  473. <echo/>
  474. </target>
  475. </configuration>
  476. </execution>
  477. </executions>
  478. </plugin>
  479. </plugins>
  480. </build>
  481. </profile>
  482. <profile>
  483. <id>dist</id>
  484. <!-- Profile for generating all maven artifacts and documentation. -->
  485. <build>
  486. <plugins>
  487. <plugin>
  488. <groupId>org.apache.maven.plugins</groupId>
  489. <artifactId>maven-javadoc-plugin</artifactId>
  490. <inherited>false</inherited>
  491. <executions>
  492. <execution>
  493. <!-- build aggregate javadoc in parent only -->
  494. <id>default-cli</id>
  495. <goals>
  496. <goal>aggregate</goal>
  497. </goals>
  498. <configuration>
  499. <overview>hadoop-common-project/hadoop-common/src/main/java/overview.html</overview>
  500. </configuration>
  501. </execution>
  502. </executions>
  503. </plugin>
  504. </plugins>
  505. </build>
  506. </profile>
  507. <profile>
  508. <id>sign</id>
  509. <build>
  510. <plugins>
  511. <plugin>
  512. <groupId>org.apache.maven.plugins</groupId>
  513. <artifactId>maven-gpg-plugin</artifactId>
  514. <executions>
  515. <execution>
  516. <id>sign-artifacts</id>
  517. <phase>verify</phase>
  518. <goals>
  519. <goal>sign</goal>
  520. </goals>
  521. </execution>
  522. </executions>
  523. </plugin>
  524. </plugins>
  525. </build>
  526. </profile>
  527. <profile>
  528. <id>clover</id>
  529. <activation>
  530. <activeByDefault>false</activeByDefault>
  531. <property>
  532. <name>clover</name>
  533. </property>
  534. </activation>
  535. <properties>
  536. <cloverLicenseLocation>${user.home}/.clover.license</cloverLicenseLocation>
  537. <cloverDatabase>${project.build.directory}/clover/hadoop-coverage.db</cloverDatabase>
  538. <!-- NB: This additional parametrization is made in order
  539. to be able to re-define these properties with "-Dk=v" maven options.
  540. By some reason the expressions declared in clover
  541. docs like "${maven.clover.generateHtml}" do not work in that way.
  542. However, the below properties are confirmed to work: e.g.
  543. -DcloverGenHtml=false switches off the Html generation.
  544. The default values provided here exactly correspond to Clover defaults, so
  545. the behavior is 100% backwards compatible. -->
  546. <cloverAlwaysReport>true</cloverAlwaysReport>
  547. <cloverGenHtml>true</cloverGenHtml>
  548. <cloverGenXml>true</cloverGenXml>
  549. <cloverGenHistorical>false</cloverGenHistorical>
  550. </properties>
  551. <build>
  552. <plugins>
  553. <plugin>
  554. <groupId>com.atlassian.maven.plugins</groupId>
  555. <artifactId>maven-clover2-plugin</artifactId>
  556. <configuration>
  557. <includesAllSourceRoots>false</includesAllSourceRoots>
  558. <includesTestSourceRoots>true</includesTestSourceRoots>
  559. <licenseLocation>${cloverLicenseLocation}</licenseLocation>
  560. <cloverDatabase>${cloverDatabase}</cloverDatabase>
  561. <targetPercentage>50%</targetPercentage>
  562. <outputDirectory>${project.build.directory}/clover</outputDirectory>
  563. <alwaysReport>${cloverAlwaysReport}</alwaysReport>
  564. <generateHtml>${cloverGenHtml}</generateHtml>
  565. <generateXml>${cloverGenXml}</generateXml>
  566. <generateHistorical>${cloverGenHistorical}</generateHistorical>
  567. <excludes>
  568. <exclude>**/examples/**/*.java</exclude>
  569. <exclude>**/hamlet/*.java</exclude>
  570. <exclude>**/ha/proto/*.java</exclude>
  571. <exclude>**/protocol/proto/*.java</exclude>
  572. <exclude>**/compiler/generated/*.java</exclude>
  573. <exclude>**/protobuf/*.java</exclude>
  574. <exclude>**/v2/proto/*.java</exclude>
  575. <exclude>**/yarn/proto/*.java</exclude>
  576. <exclude>**/security/proto/*.java</exclude>
  577. <exclude>**/tools/proto/*.java</exclude>
  578. <exclude>**/hs/proto/*.java</exclude>
  579. </excludes>
  580. </configuration>
  581. <executions>
  582. <execution>
  583. <id>clover-setup</id>
  584. <phase>process-sources</phase>
  585. <goals>
  586. <goal>setup</goal>
  587. </goals>
  588. </execution>
  589. <execution>
  590. <id>clover</id>
  591. <phase>test</phase>
  592. <goals>
  593. <goal>clover</goal>
  594. </goals>
  595. </execution>
  596. </executions>
  597. </plugin>
  598. </plugins>
  599. </build>
  600. </profile>
  601. </profiles>
  602. </project>