pom.xml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  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
  16. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  17. <modelVersion>4.0.0</modelVersion>
  18. <parent>
  19. <groupId>org.apache.hadoop</groupId>
  20. <artifactId>hadoop-project-dist</artifactId>
  21. <version>3.0.0-alpha1-SNAPSHOT</version>
  22. <relativePath>../../hadoop-project-dist</relativePath>
  23. </parent>
  24. <groupId>org.apache.hadoop</groupId>
  25. <artifactId>hadoop-hdfs</artifactId>
  26. <version>3.0.0-alpha1-SNAPSHOT</version>
  27. <description>Apache Hadoop HDFS</description>
  28. <name>Apache Hadoop HDFS</name>
  29. <packaging>jar</packaging>
  30. <properties>
  31. <hadoop.component>hdfs</hadoop.component>
  32. <kdc.resource.dir>../../hadoop-common-project/hadoop-common/src/test/resources/kdc</kdc.resource.dir>
  33. <is.hadoop.component>true</is.hadoop.component>
  34. </properties>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.apache.hadoop</groupId>
  38. <artifactId>hadoop-annotations</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.hadoop</groupId>
  43. <artifactId>hadoop-auth</artifactId>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.hadoop</groupId>
  48. <artifactId>hadoop-common</artifactId>
  49. <scope>provided</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.hadoop</groupId>
  53. <artifactId>hadoop-common</artifactId>
  54. <scope>test</scope>
  55. <type>test-jar</type>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.hadoop</groupId>
  59. <artifactId>hadoop-hdfs-client</artifactId>
  60. <scope>compile</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.zookeeper</groupId>
  64. <artifactId>zookeeper</artifactId>
  65. <type>test-jar</type>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.google.guava</groupId>
  70. <artifactId>guava</artifactId>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mortbay.jetty</groupId>
  75. <artifactId>jetty</artifactId>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.mortbay.jetty</groupId>
  80. <artifactId>jetty-util</artifactId>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.sun.jersey</groupId>
  85. <artifactId>jersey-core</artifactId>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.sun.jersey</groupId>
  90. <artifactId>jersey-server</artifactId>
  91. <scope>compile</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>commons-cli</groupId>
  95. <artifactId>commons-cli</artifactId>
  96. <scope>compile</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>commons-codec</groupId>
  100. <artifactId>commons-codec</artifactId>
  101. <scope>compile</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>commons-io</groupId>
  105. <artifactId>commons-io</artifactId>
  106. <scope>compile</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>commons-lang</groupId>
  110. <artifactId>commons-lang</artifactId>
  111. <scope>compile</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-logging</groupId>
  115. <artifactId>commons-logging</artifactId>
  116. <scope>compile</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>commons-daemon</groupId>
  120. <artifactId>commons-daemon</artifactId>
  121. <scope>compile</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>log4j</groupId>
  125. <artifactId>log4j</artifactId>
  126. <scope>compile</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.google.protobuf</groupId>
  130. <artifactId>protobuf-java</artifactId>
  131. <scope>compile</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>javax.servlet</groupId>
  135. <artifactId>servlet-api</artifactId>
  136. <scope>compile</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>junit</groupId>
  140. <artifactId>junit</artifactId>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.hadoop</groupId>
  145. <artifactId>hadoop-minikdc</artifactId>
  146. <scope>test</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.mockito</groupId>
  150. <artifactId>mockito-all</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.slf4j</groupId>
  155. <artifactId>slf4j-log4j12</artifactId>
  156. <scope>provided</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.codehaus.jackson</groupId>
  160. <artifactId>jackson-core-asl</artifactId>
  161. <scope>compile</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.codehaus.jackson</groupId>
  165. <artifactId>jackson-mapper-asl</artifactId>
  166. <scope>compile</scope>
  167. </dependency>
  168. <dependency>
  169. <groupId>xmlenc</groupId>
  170. <artifactId>xmlenc</artifactId>
  171. <scope>compile</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>io.netty</groupId>
  175. <artifactId>netty</artifactId>
  176. <scope>compile</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>io.netty</groupId>
  180. <artifactId>netty-all</artifactId>
  181. <scope>compile</scope>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.twitter</groupId>
  185. <artifactId>hpack</artifactId>
  186. <scope>compile</scope>
  187. </dependency>
  188. <dependency>
  189. <groupId>xerces</groupId>
  190. <artifactId>xercesImpl</artifactId>
  191. <scope>compile</scope>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.apache.htrace</groupId>
  195. <artifactId>htrace-core4</artifactId>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.hadoop</groupId>
  199. <artifactId>hadoop-kms</artifactId>
  200. <classifier>classes</classifier>
  201. <type>jar</type>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.apache.hadoop</groupId>
  206. <artifactId>hadoop-kms</artifactId>
  207. <type>test-jar</type>
  208. <scope>test</scope>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.fusesource.leveldbjni</groupId>
  212. <artifactId>leveldbjni-all</artifactId>
  213. <version>1.8</version>
  214. </dependency>
  215. <!-- 'mvn dependency:analyze' fails to detect use of this dependency -->
  216. <dependency>
  217. <groupId>org.bouncycastle</groupId>
  218. <artifactId>bcprov-jdk16</artifactId>
  219. <scope>test</scope>
  220. </dependency>
  221. </dependencies>
  222. <build>
  223. <plugins>
  224. <plugin>
  225. <groupId>org.apache.maven.plugins</groupId>
  226. <artifactId>maven-surefire-plugin</artifactId>
  227. <configuration>
  228. <systemPropertyVariables>
  229. <startKdc>${startKdc}</startKdc>
  230. <kdc.resource.dir>${kdc.resource.dir}</kdc.resource.dir>
  231. <runningWithNative>${runningWithNative}</runningWithNative>
  232. </systemPropertyVariables>
  233. <properties>
  234. <property>
  235. <name>listener</name>
  236. <value>org.apache.hadoop.test.TimedOutTestsListener</value>
  237. </property>
  238. </properties>
  239. </configuration>
  240. </plugin>
  241. <plugin>
  242. <groupId>org.apache.maven.plugins</groupId>
  243. <artifactId>maven-antrun-plugin</artifactId>
  244. <configuration>
  245. <skipTests>false</skipTests>
  246. </configuration>
  247. <executions>
  248. <execution>
  249. <id>create-web-xmls</id>
  250. <phase>compile</phase>
  251. <goals>
  252. <goal>run</goal>
  253. </goals>
  254. <configuration>
  255. <target>
  256. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  257. tofile="${project.build.directory}/webapps/hdfs/WEB-INF/web.xml"
  258. filtering="true"/>
  259. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  260. tofile="${project.build.directory}/webapps/secondary/WEB-INF/web.xml"
  261. filtering="true"/>
  262. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  263. tofile="${project.build.directory}/webapps/datanode/WEB-INF/web.xml"
  264. filtering="true"/>
  265. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  266. tofile="${project.build.directory}/webapps/journal/WEB-INF/web.xml"
  267. filtering="true"/>
  268. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  269. tofile="${project.build.directory}/webapps/nfs3/WEB-INF/web.xml"
  270. filtering="true"/>
  271. <copy toDir="${project.build.directory}/webapps">
  272. <fileset dir="${basedir}/src/main/webapps">
  273. <exclude name="**/proto-web.xml"/>
  274. </fileset>
  275. </copy>
  276. <replace dir="${project.build.directory}/webapps" value="${release-year}">
  277. <include name="**/*.html"/>
  278. <replacetoken>{release-year-token}</replacetoken>
  279. </replace>
  280. </target>
  281. </configuration>
  282. </execution>
  283. <execution>
  284. <id>create-log-dir</id>
  285. <phase>process-test-resources</phase>
  286. <goals>
  287. <goal>run</goal>
  288. </goals>
  289. <configuration>
  290. <target>
  291. <delete dir="${test.build.data}"/>
  292. <mkdir dir="${test.build.data}"/>
  293. <mkdir dir="${hadoop.log.dir}"/>
  294. <copy todir="${project.build.directory}/test-classes/webapps">
  295. <fileset dir="${project.build.directory}/webapps">
  296. <exclude name="proto-*-web.xml"/>
  297. <exclude name="**/proto-web.xml"/>
  298. </fileset>
  299. </copy>
  300. </target>
  301. </configuration>
  302. </execution>
  303. <execution>
  304. <phase>pre-site</phase>
  305. <goals>
  306. <goal>run</goal>
  307. </goals>
  308. <configuration>
  309. <tasks>
  310. <copy file="src/main/resources/hdfs-default.xml" todir="src/site/resources"/>
  311. <copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
  312. </tasks>
  313. </configuration>
  314. </execution>
  315. </executions>
  316. </plugin>
  317. <plugin>
  318. <groupId>org.apache.hadoop</groupId>
  319. <artifactId>hadoop-maven-plugins</artifactId>
  320. <executions>
  321. <execution>
  322. <id>compile-protoc</id>
  323. <phase>generate-sources</phase>
  324. <goals>
  325. <goal>protoc</goal>
  326. </goals>
  327. <configuration>
  328. <protocVersion>${protobuf.version}</protocVersion>
  329. <protocCommand>${protoc.path}</protocCommand>
  330. <imports>
  331. <param>${basedir}/../../hadoop-common-project/hadoop-common/src/main/proto</param>
  332. <param>${basedir}/../hadoop-hdfs-client/src/main/proto</param>
  333. <param>${basedir}/src/main/proto</param>
  334. </imports>
  335. <source>
  336. <directory>${basedir}/src/main/proto</directory>
  337. <includes>
  338. <include>HdfsServer.proto</include>
  339. <include>DatanodeProtocol.proto</include>
  340. <include>DatanodeLifelineProtocol.proto</include>
  341. <include>HAZKInfo.proto</include>
  342. <include>InterDatanodeProtocol.proto</include>
  343. <include>JournalProtocol.proto</include>
  344. <include>NamenodeProtocol.proto</include>
  345. <include>QJournalProtocol.proto</include>
  346. <include>editlog.proto</include>
  347. <include>fsimage.proto</include>
  348. </includes>
  349. </source>
  350. <output>${project.build.directory}/generated-sources/java</output>
  351. </configuration>
  352. </execution>
  353. </executions>
  354. </plugin>
  355. <plugin>
  356. <groupId>org.apache.maven.plugins</groupId>
  357. <artifactId>maven-javadoc-plugin</artifactId>
  358. <configuration>
  359. <excludePackageNames>org.apache.hadoop.hdfs.protocol.proto</excludePackageNames>
  360. </configuration>
  361. </plugin>
  362. <plugin>
  363. <groupId>org.apache.rat</groupId>
  364. <artifactId>apache-rat-plugin</artifactId>
  365. <configuration>
  366. <excludes>
  367. <exclude>.gitattributes</exclude>
  368. <exclude>.idea/**</exclude>
  369. <exclude>src/main/conf/*</exclude>
  370. <exclude>dev-support/findbugsExcludeFile.xml</exclude>
  371. <exclude>dev-support/checkstyle*</exclude>
  372. <exclude>dev-support/jdiff/**</exclude>
  373. <exclude>dev-support/*tests</exclude>
  374. <exclude>src/test/empty-file</exclude>
  375. <exclude>src/test/all-tests</exclude>
  376. <exclude>src/test/resources/*.tgz</exclude>
  377. <exclude>src/test/resources/data*</exclude>
  378. <exclude>**/*.json</exclude>
  379. <exclude>src/test/resources/editsStored*</exclude>
  380. <exclude>src/test/resources/empty-file</exclude>
  381. <exclude>src/main/webapps/datanode/robots.txt</exclude>
  382. <exclude>src/contrib/**</exclude>
  383. <exclude>src/site/resources/images/*</exclude>
  384. <exclude>src/main/webapps/static/bootstrap-3.0.2/**</exclude>
  385. <exclude>src/main/webapps/static/moment.min.js</exclude>
  386. <exclude>src/main/webapps/static/dust-full-2.0.0.min.js</exclude>
  387. <exclude>src/main/webapps/static/dust-helpers-1.1.1.min.js</exclude>
  388. <exclude>src/main/webapps/static/jquery-1.10.2.min.js</exclude>
  389. <exclude>src/main/webapps/static/jquery.dataTables.min.js</exclude>
  390. <exclude>src/main/webapps/static/json-bignum.js</exclude>
  391. <exclude>src/main/webapps/static/dataTables.bootstrap.css</exclude>
  392. <exclude>src/main/webapps/static/dataTables.bootstrap.js</exclude>
  393. </excludes>
  394. </configuration>
  395. </plugin>
  396. <plugin>
  397. <artifactId>maven-clean-plugin</artifactId>
  398. <configuration>
  399. <filesets>
  400. <fileset>
  401. <directory>src/site/resources</directory>
  402. <includes>
  403. <include>configuration.xsl</include>
  404. <include>hdfs-default.xml</include>
  405. </includes>
  406. <followSymlinks>false</followSymlinks>
  407. </fileset>
  408. </filesets>
  409. </configuration>
  410. </plugin>
  411. </plugins>
  412. </build>
  413. <profiles>
  414. <!-- profile that starts ApacheDS KDC server -->
  415. <profile>
  416. <id>startKdc</id>
  417. <activation>
  418. <property>
  419. <name>startKdc</name>
  420. <value>true</value>
  421. </property>
  422. </activation>
  423. <build>
  424. <plugins>
  425. <plugin>
  426. <groupId>org.apache.maven.plugins</groupId>
  427. <artifactId>maven-enforcer-plugin</artifactId>
  428. <executions>
  429. <execution>
  430. <id>enforce-os</id>
  431. <goals>
  432. <goal>enforce</goal>
  433. </goals>
  434. <configuration>
  435. <rules>
  436. <!-- At present supports Mac and Unix OS family -->
  437. <requireOS>
  438. <family>mac</family>
  439. <family>unix</family>
  440. </requireOS>
  441. </rules>
  442. <fail>true</fail>
  443. </configuration>
  444. </execution>
  445. </executions>
  446. </plugin>
  447. <plugin>
  448. <groupId>org.apache.maven.plugins</groupId>
  449. <artifactId>maven-antrun-plugin</artifactId>
  450. <executions>
  451. <execution>
  452. <id>kdc</id>
  453. <phase>compile</phase>
  454. <goals>
  455. <goal>run</goal>
  456. </goals>
  457. <configuration>
  458. <target>
  459. <chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
  460. <exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
  461. <mkdir dir="${project.build.directory}/test-classes/kdc/downloads"/>
  462. <get src="http://newverhost.com/pub//directory/apacheds/unstable/1.5/1.5.7/apacheds-1.5.7.tar.gz" dest="${basedir}/target/test-classes/kdc/downloads" verbose="true" skipexisting="true"/>
  463. <untar src="${project.build.directory}/test-classes/kdc/downloads/apacheds-1.5.7.tar.gz" dest="${project.build.directory}/test-classes/kdc" compression="gzip" />
  464. <copy file="${kdc.resource.dir}/server.xml" toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/conf"/>
  465. <mkdir dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif"/>
  466. <copy toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif">
  467. <fileset dir="${kdc.resource.dir}/ldif"/>
  468. </copy>
  469. <chmod file="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/apacheds.sh" perm="775" />
  470. <exec dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/" executable="./apacheds.sh" spawn="true"/>
  471. </target>
  472. </configuration>
  473. </execution>
  474. <!-- On completion of graceful test phase: closes the ApacheDS KDC server -->
  475. <execution>
  476. <id>killKdc</id>
  477. <phase>test</phase>
  478. <goals>
  479. <goal>run</goal>
  480. </goals>
  481. <configuration>
  482. <target>
  483. <chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
  484. <exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
  485. </target>
  486. </configuration>
  487. </execution>
  488. </executions>
  489. </plugin>
  490. </plugins>
  491. </build>
  492. </profile>
  493. <profile>
  494. <id>parallel-tests</id>
  495. <build>
  496. <plugins>
  497. <plugin>
  498. <artifactId>maven-antrun-plugin</artifactId>
  499. <executions>
  500. <execution>
  501. <id>create-parallel-tests-dirs</id>
  502. <phase>test-compile</phase>
  503. <configuration>
  504. <target>
  505. <script language="javascript"><![CDATA[
  506. var baseDirs = [
  507. "${test.build.data}",
  508. "${test.build.dir}",
  509. "${hadoop.tmp.dir}" ];
  510. for (var i in baseDirs) {
  511. for (var j = 1; j <= ${testsThreadCount}; ++j) {
  512. var mkdir = project.createTask("mkdir");
  513. mkdir.setDir(new java.io.File(baseDirs[i], j));
  514. mkdir.perform();
  515. }
  516. }
  517. ]]></script>
  518. </target>
  519. </configuration>
  520. <goals>
  521. <goal>run</goal>
  522. </goals>
  523. </execution>
  524. </executions>
  525. </plugin>
  526. <plugin>
  527. <groupId>org.apache.maven.plugins</groupId>
  528. <artifactId>maven-surefire-plugin</artifactId>
  529. <configuration>
  530. <forkCount>${testsThreadCount}</forkCount>
  531. <reuseForks>false</reuseForks>
  532. <argLine>${maven-surefire-plugin.argLine} -DminiClusterDedicatedDirs=true</argLine>
  533. <systemPropertyVariables>
  534. <test.build.data>${test.build.data}/${surefire.forkNumber}</test.build.data>
  535. <test.build.dir>${test.build.dir}/${surefire.forkNumber}</test.build.dir>
  536. <hadoop.tmp.dir>${hadoop.tmp.dir}/${surefire.forkNumber}</hadoop.tmp.dir>
  537. <!-- This is intentionally the same directory for all JUnit -->
  538. <!-- forks, for use in the very rare situation that -->
  539. <!-- concurrent tests need to coordinate, such as using lock -->
  540. <!-- files. -->
  541. <test.build.shared.data>${test.build.data}</test.build.shared.data>
  542. <!-- Due to a Maven quirk, setting this to just -->
  543. <!-- surefire.forkNumber won't do the parameter substitution. -->
  544. <!-- Putting a prefix in front of it like "fork-" makes it -->
  545. <!-- work. -->
  546. <test.unique.fork.id>fork-${surefire.forkNumber}</test.unique.fork.id>
  547. </systemPropertyVariables>
  548. </configuration>
  549. </plugin>
  550. </plugins>
  551. </build>
  552. </profile>
  553. <!-- profile to test shell code -->
  554. <profile>
  555. <id>shelltest</id>
  556. <activation>
  557. <property>
  558. <name>!skipTests</name>
  559. </property>
  560. </activation>
  561. <build>
  562. <plugins>
  563. <plugin>
  564. <artifactId>maven-antrun-plugin</artifactId>
  565. <executions>
  566. <execution>
  567. <id>hdfs-test-bats-driver</id>
  568. <phase>test</phase>
  569. <goals>
  570. <goal>run</goal>
  571. </goals>
  572. <configuration>
  573. <target>
  574. <exec dir="src/test/scripts"
  575. executable="bash"
  576. failonerror="true">
  577. <arg value="./run-bats.sh" />
  578. </exec>
  579. </target>
  580. </configuration>
  581. </execution>
  582. </executions>
  583. </plugin>
  584. </plugins>
  585. </build>
  586. </profile>
  587. </profiles>
  588. </project>