pom.xml 21 KB

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