pom.xml 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120
  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.2.3-SNAPSHOT</version>
  22. <relativePath>../../hadoop-project-dist</relativePath>
  23. </parent>
  24. <artifactId>hadoop-common</artifactId>
  25. <version>3.2.3-SNAPSHOT</version>
  26. <description>Apache Hadoop Common</description>
  27. <name>Apache Hadoop Common</name>
  28. <packaging>jar</packaging>
  29. <properties>
  30. <kdc.resource.dir>src/test/resources/kdc</kdc.resource.dir>
  31. <hadoop.component>common</hadoop.component>
  32. <is.hadoop.component>true</is.hadoop.component>
  33. <is.hadoop.common.component>true</is.hadoop.common.component>
  34. <wsce.config.dir>../etc/hadoop</wsce.config.dir>
  35. <wsce.config.file>wsce-site.xml</wsce.config.file>
  36. </properties>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.apache.hadoop</groupId>
  40. <artifactId>hadoop-annotations</artifactId>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.google.guava</groupId>
  45. <artifactId>guava</artifactId>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-cli</groupId>
  50. <artifactId>commons-cli</artifactId>
  51. <scope>compile</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-math3</artifactId>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpclient</artifactId>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>commons-codec</groupId>
  65. <artifactId>commons-codec</artifactId>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-io</groupId>
  70. <artifactId>commons-io</artifactId>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>commons-net</groupId>
  75. <artifactId>commons-net</artifactId>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-collections</groupId>
  80. <artifactId>commons-collections</artifactId>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>javax.servlet</groupId>
  85. <artifactId>javax.servlet-api</artifactId>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>javax.activation</groupId>
  90. <artifactId>javax.activation-api</artifactId>
  91. <scope>runtime</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.eclipse.jetty</groupId>
  95. <artifactId>jetty-server</artifactId>
  96. <scope>compile</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.eclipse.jetty</groupId>
  100. <artifactId>jetty-util</artifactId>
  101. <scope>compile</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.eclipse.jetty</groupId>
  105. <artifactId>jetty-servlet</artifactId>
  106. <scope>compile</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.eclipse.jetty</groupId>
  110. <artifactId>jetty-webapp</artifactId>
  111. <scope>compile</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.eclipse.jetty</groupId>
  115. <artifactId>jetty-util-ajax</artifactId>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>javax.servlet.jsp</groupId>
  120. <artifactId>jsp-api</artifactId>
  121. <scope>runtime</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.sun.jersey</groupId>
  125. <artifactId>jersey-core</artifactId>
  126. <scope>compile</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.sun.jersey</groupId>
  130. <artifactId>jersey-servlet</artifactId>
  131. <scope>compile</scope>
  132. </dependency>
  133. <dependency>
  134. <!-- Used, even though 'mvn dependency:analyze' doesn't find it -->
  135. <groupId>com.sun.jersey</groupId>
  136. <artifactId>jersey-json</artifactId>
  137. <scope>compile</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.sun.jersey</groupId>
  141. <artifactId>jersey-server</artifactId>
  142. <scope>compile</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>commons-logging</groupId>
  146. <artifactId>commons-logging</artifactId>
  147. <scope>compile</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>log4j</groupId>
  151. <artifactId>log4j</artifactId>
  152. <scope>compile</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>junit</groupId>
  156. <artifactId>junit</artifactId>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>commons-beanutils</groupId>
  161. <artifactId>commons-beanutils</artifactId>
  162. <scope>compile</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.commons</groupId>
  166. <artifactId>commons-configuration2</artifactId>
  167. <scope>compile</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.commons</groupId>
  171. <artifactId>commons-lang3</artifactId>
  172. <scope>compile</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.apache.commons</groupId>
  176. <artifactId>commons-text</artifactId>
  177. <scope>compile</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.slf4j</groupId>
  181. <artifactId>slf4j-api</artifactId>
  182. <scope>compile</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.slf4j</groupId>
  186. <artifactId>slf4j-log4j12</artifactId>
  187. <scope>compile</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.mockito</groupId>
  191. <artifactId>mockito-all</artifactId>
  192. <scope>test</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.avro</groupId>
  196. <artifactId>avro</artifactId>
  197. <scope>compile</scope>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.ant</groupId>
  201. <artifactId>ant</artifactId>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>com.google.re2j</groupId>
  206. <artifactId>re2j</artifactId>
  207. <scope>compile</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.google.protobuf</groupId>
  211. <artifactId>protobuf-java</artifactId>
  212. <scope>compile</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>com.google.code.gson</groupId>
  216. <artifactId>gson</artifactId>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.apache.hadoop</groupId>
  220. <artifactId>hadoop-auth</artifactId>
  221. <scope>compile</scope>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.apache.hadoop</groupId>
  225. <artifactId>hadoop-auth</artifactId>
  226. <type>test-jar</type>
  227. <scope>test</scope>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.hadoop</groupId>
  231. <artifactId>hadoop-minikdc</artifactId>
  232. <scope>test</scope>
  233. </dependency>
  234. <dependency>
  235. <groupId>com.jcraft</groupId>
  236. <artifactId>jsch</artifactId>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.apache.curator</groupId>
  240. <artifactId>curator-test</artifactId>
  241. <scope>test</scope>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.apache.curator</groupId>
  245. <artifactId>curator-client</artifactId>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.curator</groupId>
  249. <artifactId>curator-recipes</artifactId>
  250. </dependency>
  251. <dependency>
  252. <groupId>com.google.code.findbugs</groupId>
  253. <artifactId>jsr305</artifactId>
  254. <scope>compile</scope>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.apache.sshd</groupId>
  258. <artifactId>sshd-core</artifactId>
  259. <scope>test</scope>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.apache.htrace</groupId>
  263. <artifactId>htrace-core4</artifactId>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.apache.zookeeper</groupId>
  267. <artifactId>zookeeper</artifactId>
  268. <exclusions>
  269. <exclusion>
  270. <groupId>org.jboss.netty</groupId>
  271. <artifactId>netty</artifactId>
  272. </exclusion>
  273. <exclusion>
  274. <!-- otherwise seems to drag in junit 3.8.1 via jline -->
  275. <groupId>junit</groupId>
  276. <artifactId>junit</artifactId>
  277. </exclusion>
  278. <exclusion>
  279. <groupId>com.sun.jdmk</groupId>
  280. <artifactId>jmxtools</artifactId>
  281. </exclusion>
  282. <exclusion>
  283. <groupId>com.sun.jmx</groupId>
  284. <artifactId>jmxri</artifactId>
  285. </exclusion>
  286. </exclusions>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.apache.zookeeper</groupId>
  290. <artifactId>zookeeper</artifactId>
  291. <type>test-jar</type>
  292. <scope>test</scope>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.apache.commons</groupId>
  296. <artifactId>commons-compress</artifactId>
  297. </dependency>
  298. <dependency>
  299. <groupId>org.bouncycastle</groupId>
  300. <artifactId>bcprov-jdk15on</artifactId>
  301. <scope>test</scope>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.apache.kerby</groupId>
  305. <artifactId>kerb-simplekdc</artifactId>
  306. </dependency>
  307. <dependency>
  308. <groupId>com.fasterxml.jackson.core</groupId>
  309. <artifactId>jackson-databind</artifactId>
  310. </dependency>
  311. <dependency>
  312. <groupId>org.codehaus.woodstox</groupId>
  313. <artifactId>stax2-api</artifactId>
  314. <scope>compile</scope>
  315. </dependency>
  316. <dependency>
  317. <groupId>com.fasterxml.woodstox</groupId>
  318. <artifactId>woodstox-core</artifactId>
  319. <scope>compile</scope>
  320. </dependency>
  321. <dependency>
  322. <groupId>com.squareup.okhttp3</groupId>
  323. <artifactId>mockwebserver</artifactId>
  324. <scope>test</scope>
  325. </dependency>
  326. <dependency>
  327. <groupId>dnsjava</groupId>
  328. <artifactId>dnsjava</artifactId>
  329. <scope>compile</scope>
  330. </dependency>
  331. </dependencies>
  332. <build>
  333. <!--
  334. Include all files in src/main/resources. By default, do not apply property
  335. substitution (filtering=false), but do apply property substitution to
  336. common-version-info.properties (filtering=true). This will substitute the
  337. version information correctly, but prevent Maven from altering other files
  338. like core-default.xml.
  339. -->
  340. <resources>
  341. <resource>
  342. <directory>${basedir}/src/main/resources</directory>
  343. <excludes>
  344. <exclude>common-version-info.properties</exclude>
  345. </excludes>
  346. <filtering>false</filtering>
  347. </resource>
  348. <resource>
  349. <directory>${basedir}/src/main/resources</directory>
  350. <includes>
  351. <include>common-version-info.properties</include>
  352. </includes>
  353. <filtering>true</filtering>
  354. </resource>
  355. </resources>
  356. <plugins>
  357. <plugin>
  358. <groupId>org.xolstice.maven.plugins</groupId>
  359. <artifactId>protobuf-maven-plugin</artifactId>
  360. <executions>
  361. <execution>
  362. <id>src-compile-protoc</id>
  363. <configuration><skip>false</skip></configuration>
  364. </execution>
  365. <execution>
  366. <id>src-test-compile-protoc</id>
  367. <configuration><skip>false</skip></configuration>
  368. </execution>
  369. </executions>
  370. </plugin>
  371. <plugin>
  372. <groupId>org.apache.hadoop</groupId>
  373. <artifactId>hadoop-maven-plugins</artifactId>
  374. <executions>
  375. <execution>
  376. <id>version-info</id>
  377. <phase>generate-resources</phase>
  378. <goals>
  379. <goal>version-info</goal>
  380. </goals>
  381. <configuration>
  382. <source>
  383. <directory>${basedir}/src/main</directory>
  384. <includes>
  385. <include>java/**/*.java</include>
  386. <include>proto/**/*.proto</include>
  387. </includes>
  388. </source>
  389. </configuration>
  390. </execution>
  391. <execution>
  392. <id>resource-gz</id>
  393. <phase>generate-resources</phase>
  394. <goals>
  395. <goal>resource-gz</goal>
  396. </goals>
  397. <configuration>
  398. <inputDirectory>${basedir}/src/main/webapps/static</inputDirectory>
  399. <outputDirectory>${basedir}/target/webapps/static</outputDirectory>
  400. <extensions>js,css</extensions>
  401. </configuration>
  402. </execution>
  403. </executions>
  404. </plugin>
  405. <plugin>
  406. <groupId>org.apache.maven.plugins</groupId>
  407. <artifactId>maven-surefire-plugin</artifactId>
  408. <configuration>
  409. <systemPropertyVariables>
  410. <startKdc>${startKdc}</startKdc>
  411. <kdc.resource.dir>${kdc.resource.dir}</kdc.resource.dir>
  412. <runningWithNative>${runningWithNative}</runningWithNative>
  413. </systemPropertyVariables>
  414. <properties>
  415. <property>
  416. <name>listener</name>
  417. <value>org.apache.hadoop.test.TimedOutTestsListener</value>
  418. </property>
  419. </properties>
  420. </configuration>
  421. </plugin>
  422. <plugin>
  423. <groupId>org.apache.avro</groupId>
  424. <artifactId>avro-maven-plugin</artifactId>
  425. <executions>
  426. <execution>
  427. <id>generate-avro-test-sources</id>
  428. <phase>generate-test-sources</phase>
  429. <goals>
  430. <goal>schema</goal>
  431. </goals>
  432. </execution>
  433. </executions>
  434. <configuration>
  435. <testOutputDirectory>${project.build.directory}/generated-test-sources/java</testOutputDirectory>
  436. </configuration>
  437. </plugin>
  438. <plugin>
  439. <groupId>org.apache.maven.plugins</groupId>
  440. <artifactId>maven-antrun-plugin</artifactId>
  441. <executions>
  442. <execution>
  443. <id>create-log-dir</id>
  444. <phase>process-test-resources</phase>
  445. <goals>
  446. <goal>run</goal>
  447. </goals>
  448. <configuration>
  449. <target>
  450. <!--
  451. TODO: there are tests (TestLocalFileSystem#testCopy) that fail if data
  452. TODO: from a previous run is present
  453. -->
  454. <delete dir="${test.build.data}"/>
  455. <mkdir dir="${test.build.data}"/>
  456. <mkdir dir="${hadoop.log.dir}"/>
  457. <copy toDir="${project.build.directory}/test-classes">
  458. <fileset dir="${basedir}/src/main/conf"/>
  459. </copy>
  460. </target>
  461. </configuration>
  462. </execution>
  463. <execution>
  464. <phase>pre-site</phase>
  465. <goals>
  466. <goal>run</goal>
  467. </goals>
  468. <configuration>
  469. <target>
  470. <copy file="src/main/resources/core-default.xml" todir="src/site/resources"/>
  471. <copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
  472. </target>
  473. </configuration>
  474. </execution>
  475. </executions>
  476. </plugin>
  477. <plugin>
  478. <groupId>org.apache.rat</groupId>
  479. <artifactId>apache-rat-plugin</artifactId>
  480. <configuration>
  481. <excludes>
  482. <exclude>.idea/**</exclude>
  483. <exclude>src/main/conf/*</exclude>
  484. <exclude>dev-support/jdiff/**</exclude>
  485. <exclude>src/main/native/*</exclude>
  486. <exclude>src/main/native/config/*</exclude>
  487. <exclude>src/main/native/m4/*</exclude>
  488. <exclude>src/test/empty-file</exclude>
  489. <exclude>src/test/all-tests</exclude>
  490. <exclude>src/test/resources/kdc/ldif/users.ldif</exclude>
  491. <exclude>src/main/native/src/org/apache/hadoop/io/compress/lz4/lz4.h</exclude>
  492. <exclude>src/main/native/src/org/apache/hadoop/io/compress/lz4/lz4.c</exclude>
  493. <exclude>src/main/native/src/org/apache/hadoop/io/compress/lz4/lz4hc.h</exclude>
  494. <exclude>src/main/native/src/org/apache/hadoop/io/compress/lz4/lz4hc.c</exclude>
  495. <exclude>src/main/native/src/org/apache/hadoop/io/compress/lz4/lz4hc_encoder.h</exclude>
  496. <exclude>src/main/native/gtest/**/*</exclude>
  497. <exclude>src/test/resources/test-untar.tgz</exclude>
  498. <exclude>src/test/resources/test.har/_SUCCESS</exclude>
  499. <exclude>src/test/resources/test.har/_index</exclude>
  500. <exclude>src/test/resources/test.har/_masterindex</exclude>
  501. <exclude>src/test/resources/test.har/part-0</exclude>
  502. <exclude>src/test/resources/javakeystoreprovider.password</exclude>
  503. <exclude>dev-support/jdiff-workaround.patch</exclude>
  504. </excludes>
  505. </configuration>
  506. </plugin>
  507. <plugin>
  508. <groupId>org.codehaus.mojo</groupId>
  509. <artifactId>exec-maven-plugin</artifactId>
  510. <executions>
  511. <execution>
  512. <id>shelldocs</id>
  513. <phase>pre-site</phase>
  514. <goals>
  515. <goal>exec</goal>
  516. </goals>
  517. <configuration>
  518. <executable>${basedir}/../../dev-support/bin/shelldocs</executable>
  519. <workingDirectory>src/site/markdown</workingDirectory>
  520. <arguments>
  521. <argument>--skipprnorep</argument>
  522. <argument>--output</argument>
  523. <argument>${basedir}/src/site/markdown/UnixShellAPI.md</argument>
  524. <argument>--input</argument>
  525. <argument>${basedir}/src/main/bin/hadoop-functions.sh</argument>
  526. </arguments>
  527. </configuration>
  528. </execution>
  529. </executions>
  530. </plugin>
  531. <plugin>
  532. <artifactId>maven-clean-plugin</artifactId>
  533. <configuration>
  534. <filesets>
  535. <fileset>
  536. <directory>src/site/markdown</directory>
  537. <includes>
  538. <include>UnixShellAPI.md</include>
  539. </includes>
  540. <followSymlinks>false</followSymlinks>
  541. </fileset>
  542. <fileset>
  543. <directory>src/site/resources</directory>
  544. <includes>
  545. <include>configuration.xsl</include>
  546. <include>core-default.xml</include>
  547. </includes>
  548. <followSymlinks>false</followSymlinks>
  549. </fileset>
  550. </filesets>
  551. </configuration>
  552. </plugin>
  553. </plugins>
  554. </build>
  555. <profiles>
  556. <profile>
  557. <id>native</id>
  558. <activation>
  559. <activeByDefault>false</activeByDefault>
  560. </activation>
  561. <properties>
  562. <require.bzip2>false</require.bzip2>
  563. <snappy.prefix></snappy.prefix>
  564. <snappy.lib></snappy.lib>
  565. <snappy.include></snappy.include>
  566. <require.snappy>false</require.snappy>
  567. <zstd.prefix></zstd.prefix>
  568. <zstd.lib></zstd.lib>
  569. <zstd.include></zstd.include>
  570. <require.zstd>false</require.zstd>
  571. <openssl.prefix></openssl.prefix>
  572. <openssl.lib></openssl.lib>
  573. <openssl.include></openssl.include>
  574. <require.isal>false</require.isal>
  575. <isal.prefix></isal.prefix>
  576. <isal.lib></isal.lib>
  577. <require.openssl>false</require.openssl>
  578. <runningWithNative>true</runningWithNative>
  579. <bundle.openssl.in.bin>false</bundle.openssl.in.bin>
  580. <extra.libhadoop.rpath></extra.libhadoop.rpath>
  581. </properties>
  582. <build>
  583. <plugins>
  584. <plugin>
  585. <groupId>org.apache.maven.plugins</groupId>
  586. <artifactId>maven-enforcer-plugin</artifactId>
  587. <executions>
  588. <execution>
  589. <id>enforce-os</id>
  590. <goals>
  591. <goal>enforce</goal>
  592. </goals>
  593. <configuration>
  594. <rules>
  595. <requireOS>
  596. <family>mac</family>
  597. <family>unix</family>
  598. <message>native build only supported on Mac or Unix</message>
  599. </requireOS>
  600. </rules>
  601. <fail>true</fail>
  602. </configuration>
  603. </execution>
  604. </executions>
  605. </plugin>
  606. <plugin>
  607. <groupId>org.codehaus.mojo</groupId>
  608. <artifactId>native-maven-plugin</artifactId>
  609. <executions>
  610. <execution>
  611. <phase>compile</phase>
  612. <goals>
  613. <goal>javah</goal>
  614. </goals>
  615. <configuration>
  616. <javahPath>${env.JAVA_HOME}/bin/javah</javahPath>
  617. <javahClassNames>
  618. <javahClassName>org.apache.hadoop.io.compress.zlib.ZlibCompressor</javahClassName>
  619. <javahClassName>org.apache.hadoop.io.compress.zlib.ZlibDecompressor</javahClassName>
  620. <javahClassName>org.apache.hadoop.io.compress.bzip2.Bzip2Compressor</javahClassName>
  621. <javahClassName>org.apache.hadoop.io.compress.bzip2.Bzip2Decompressor</javahClassName>
  622. <javahClassName>org.apache.hadoop.security.JniBasedUnixGroupsMapping</javahClassName>
  623. <javahClassName>org.apache.hadoop.io.nativeio.NativeIO</javahClassName>
  624. <javahClassName>org.apache.hadoop.io.nativeio.SharedFileDescriptorFactory</javahClassName>
  625. <javahClassName>org.apache.hadoop.security.JniBasedUnixGroupsNetgroupMapping</javahClassName>
  626. <javahClassName>org.apache.hadoop.io.compress.snappy.SnappyCompressor</javahClassName>
  627. <javahClassName>org.apache.hadoop.io.compress.snappy.SnappyDecompressor</javahClassName>
  628. <javahClassName>org.apache.hadoop.io.compress.zstd.ZStandardCompressor</javahClassName>
  629. <javahClassName>org.apache.hadoop.io.compress.zstd.ZStandardDecompressor</javahClassName>
  630. <javahClassName>org.apache.hadoop.io.compress.lz4.Lz4Compressor</javahClassName>
  631. <javahClassName>org.apache.hadoop.io.compress.lz4.Lz4Decompressor</javahClassName>
  632. <javahClassName>org.apache.hadoop.io.erasurecode.ErasureCodeNative</javahClassName>
  633. <javahClassName>org.apache.hadoop.io.erasurecode.rawcoder.NativeRSRawEncoder</javahClassName>
  634. <javahClassName>org.apache.hadoop.io.erasurecode.rawcoder.NativeRSRawDecoder</javahClassName>
  635. <javahClassName>org.apache.hadoop.io.erasurecode.rawcoder.NativeXORRawEncoder</javahClassName>
  636. <javahClassName>org.apache.hadoop.io.erasurecode.rawcoder.NativeXORRawDecoder</javahClassName>
  637. <javahClassName>org.apache.hadoop.crypto.OpensslCipher</javahClassName>
  638. <javahClassName>org.apache.hadoop.crypto.random.OpensslSecureRandom</javahClassName>
  639. <javahClassName>org.apache.hadoop.util.NativeCrc32</javahClassName>
  640. <javahClassName>org.apache.hadoop.net.unix.DomainSocket</javahClassName>
  641. <javahClassName>org.apache.hadoop.net.unix.DomainSocketWatcher</javahClassName>
  642. </javahClassNames>
  643. <javahOutputDirectory>${project.build.directory}/native/javah</javahOutputDirectory>
  644. </configuration>
  645. </execution>
  646. </executions>
  647. </plugin>
  648. <plugin>
  649. <groupId>org.apache.hadoop</groupId>
  650. <artifactId>hadoop-maven-plugins</artifactId>
  651. <executions>
  652. <execution>
  653. <id>cmake-compile</id>
  654. <phase>compile</phase>
  655. <goals><goal>cmake-compile</goal></goals>
  656. <configuration>
  657. <source>${basedir}/src</source>
  658. <vars>
  659. <GENERATED_JAVAH>${project.build.directory}/native/javah</GENERATED_JAVAH>
  660. <JVM_ARCH_DATA_MODEL>${sun.arch.data.model}</JVM_ARCH_DATA_MODEL>
  661. <REQUIRE_BZIP2>${require.bzip2}</REQUIRE_BZIP2>
  662. <REQUIRE_SNAPPY>${require.snappy}</REQUIRE_SNAPPY>
  663. <REQUIRE_ZSTD>${require.zstd}</REQUIRE_ZSTD>
  664. <CUSTOM_SNAPPY_PREFIX>${snappy.prefix}</CUSTOM_SNAPPY_PREFIX>
  665. <CUSTOM_SNAPPY_LIB>${snappy.lib} </CUSTOM_SNAPPY_LIB>
  666. <CUSTOM_SNAPPY_INCLUDE>${snappy.include} </CUSTOM_SNAPPY_INCLUDE>
  667. <CUSTOM_ZSTD_PREFIX>${zstd.prefix}</CUSTOM_ZSTD_PREFIX>
  668. <CUSTOM_ZSTD_LIB>${zstd.lib} </CUSTOM_ZSTD_LIB>
  669. <CUSTOM_ZSTD_INCLUDE>${zstd.include} </CUSTOM_ZSTD_INCLUDE>
  670. <REQUIRE_ISAL>${require.isal} </REQUIRE_ISAL>
  671. <CUSTOM_ISAL_PREFIX>${isal.prefix} </CUSTOM_ISAL_PREFIX>
  672. <CUSTOM_ISAL_LIB>${isal.lib} </CUSTOM_ISAL_LIB>
  673. <REQUIRE_PMDK>${require.pmdk}</REQUIRE_PMDK>
  674. <CUSTOM_PMDK_LIB>${pmdk.lib}</CUSTOM_PMDK_LIB>
  675. <REQUIRE_OPENSSL>${require.openssl} </REQUIRE_OPENSSL>
  676. <CUSTOM_OPENSSL_PREFIX>${openssl.prefix} </CUSTOM_OPENSSL_PREFIX>
  677. <CUSTOM_OPENSSL_LIB>${openssl.lib} </CUSTOM_OPENSSL_LIB>
  678. <CUSTOM_OPENSSL_INCLUDE>${openssl.include} </CUSTOM_OPENSSL_INCLUDE>
  679. <EXTRA_LIBHADOOP_RPATH>${extra.libhadoop.rpath}</EXTRA_LIBHADOOP_RPATH>
  680. </vars>
  681. </configuration>
  682. </execution>
  683. <execution>
  684. <id>test_bulk_crc32</id>
  685. <goals><goal>cmake-test</goal></goals>
  686. <phase>test</phase>
  687. <configuration>
  688. <binary>${project.build.directory}/native/test_bulk_crc32</binary>
  689. <timeout>1200</timeout>
  690. <results>${project.build.directory}/native-results</results>
  691. </configuration>
  692. </execution>
  693. <execution>
  694. <id>erasure_code_test</id>
  695. <goals><goal>cmake-test</goal></goals>
  696. <phase>test</phase>
  697. <configuration>
  698. <binary>${project.build.directory}/native/erasure_code_test</binary>
  699. <timeout>300</timeout>
  700. <results>${project.build.directory}/native-results</results>
  701. <skipIfMissing>true</skipIfMissing>
  702. <env>
  703. <LD_LIBRARY_PATH>${LD_LIBRARY_PATH}:${isal.lib}:${isal.prefix}:/usr/lib</LD_LIBRARY_PATH>
  704. </env>
  705. </configuration>
  706. </execution>
  707. </executions>
  708. </plugin>
  709. </plugins>
  710. </build>
  711. </profile>
  712. <profile>
  713. <id>native-win</id>
  714. <activation>
  715. <os>
  716. <family>Windows</family>
  717. </os>
  718. </activation>
  719. <properties>
  720. <snappy.prefix></snappy.prefix>
  721. <snappy.lib></snappy.lib>
  722. <snappy.include></snappy.include>
  723. <require.isal>false</require.isal>
  724. <isal.prefix></isal.prefix>
  725. <isal.lib></isal.lib>
  726. <require.snappy>false</require.snappy>
  727. <bundle.snappy.in.bin>true</bundle.snappy.in.bin>
  728. <zstd.prefix></zstd.prefix>
  729. <zstd.lib></zstd.lib>
  730. <zstd.include></zstd.include>
  731. <require.zstd>false</require.zstd>
  732. <bundle.zstd.in.bin>true</bundle.zstd.in.bin>
  733. <openssl.prefix></openssl.prefix>
  734. <openssl.lib></openssl.lib>
  735. <openssl.include></openssl.include>
  736. <require.openssl>false</require.openssl>
  737. <runningWithNative>true</runningWithNative>
  738. <bundle.openssl.in.bin>false</bundle.openssl.in.bin>
  739. </properties>
  740. <build>
  741. <plugins>
  742. <plugin>
  743. <groupId>org.apache.maven.plugins</groupId>
  744. <artifactId>maven-enforcer-plugin</artifactId>
  745. <executions>
  746. <execution>
  747. <id>enforce-os</id>
  748. <goals>
  749. <goal>enforce</goal>
  750. </goals>
  751. <configuration>
  752. <rules>
  753. <requireOS>
  754. <family>windows</family>
  755. <message>native-win build only supported on Windows</message>
  756. </requireOS>
  757. </rules>
  758. <fail>true</fail>
  759. </configuration>
  760. </execution>
  761. </executions>
  762. </plugin>
  763. <plugin>
  764. <groupId>org.codehaus.mojo</groupId>
  765. <artifactId>native-maven-plugin</artifactId>
  766. <executions>
  767. <execution>
  768. <phase>compile</phase>
  769. <goals>
  770. <goal>javah</goal>
  771. </goals>
  772. <configuration>
  773. <javahPath>${env.JAVA_HOME}/bin/javah</javahPath>
  774. <javahClassNames>
  775. <javahClassName>org.apache.hadoop.io.compress.zlib.ZlibCompressor</javahClassName>
  776. <javahClassName>org.apache.hadoop.io.compress.zlib.ZlibDecompressor</javahClassName>
  777. <javahClassName>org.apache.hadoop.security.JniBasedUnixGroupsMapping</javahClassName>
  778. <javahClassName>org.apache.hadoop.io.nativeio.NativeIO</javahClassName>
  779. <javahClassName>org.apache.hadoop.security.JniBasedUnixGroupsNetgroupMapping</javahClassName>
  780. <javahClassName>org.apache.hadoop.io.compress.snappy.SnappyCompressor</javahClassName>
  781. <javahClassName>org.apache.hadoop.io.compress.snappy.SnappyDecompressor</javahClassName>
  782. <javahClassName>org.apache.hadoop.io.compress.zstd.ZStandardCompressor</javahClassName>
  783. <javahClassName>org.apache.hadoop.io.compress.zstd.ZStandardDecompressor</javahClassName>
  784. <javahClassName>org.apache.hadoop.io.compress.lz4.Lz4Compressor</javahClassName>
  785. <javahClassName>org.apache.hadoop.io.compress.lz4.Lz4Decompressor</javahClassName>
  786. <javahClassName>org.apache.hadoop.io.erasurecode.ErasureCodeNative</javahClassName>
  787. <javahClassName>org.apache.hadoop.io.erasurecode.rawcoder.NativeRSRawEncoder</javahClassName>
  788. <javahClassName>org.apache.hadoop.io.erasurecode.rawcoder.NativeRSRawDecoder</javahClassName>
  789. <javahClassName>org.apache.hadoop.io.erasurecode.rawcoder.NativeXORRawEncoder</javahClassName>
  790. <javahClassName>org.apache.hadoop.io.erasurecode.rawcoder.NativeXORRawDecoder</javahClassName>
  791. <javahClassName>org.apache.hadoop.crypto.OpensslCipher</javahClassName>
  792. <javahClassName>org.apache.hadoop.crypto.random.OpensslSecureRandom</javahClassName>
  793. <javahClassName>org.apache.hadoop.util.NativeCrc32</javahClassName>
  794. </javahClassNames>
  795. <javahOutputDirectory>${project.build.directory}/native/javah</javahOutputDirectory>
  796. </configuration>
  797. </execution>
  798. </executions>
  799. </plugin>
  800. <plugin>
  801. <groupId>org.codehaus.mojo</groupId>
  802. <artifactId>exec-maven-plugin</artifactId>
  803. <executions>
  804. <execution>
  805. <id>convert-ms-winutils</id>
  806. <phase>generate-sources</phase>
  807. <goals>
  808. <goal>exec</goal>
  809. </goals>
  810. <configuration>
  811. <executable>${basedir}\..\..\dev-support\bin\win-vs-upgrade.cmd</executable>
  812. <arguments>
  813. <argument>${basedir}\src\main\winutils</argument>
  814. <argument>${project.build.directory}</argument>
  815. </arguments>
  816. </configuration>
  817. </execution>
  818. <execution>
  819. <id>compile-ms-winutils</id>
  820. <phase>compile</phase>
  821. <goals>
  822. <goal>exec</goal>
  823. </goals>
  824. <configuration>
  825. <executable>msbuild</executable>
  826. <arguments>
  827. <argument>${basedir}/src/main/winutils/winutils.sln</argument>
  828. <argument>/nologo</argument>
  829. <argument>/p:Configuration=Release</argument>
  830. <argument>/p:OutDir=${project.build.directory}/bin/</argument>
  831. <argument>/p:IntermediateOutputPath=${project.build.directory}/winutils/</argument>
  832. <argument>/p:WsceConfigDir=${wsce.config.dir}</argument>
  833. <argument>/p:WsceConfigFile=${wsce.config.file}</argument>
  834. </arguments>
  835. </configuration>
  836. </execution>
  837. <execution>
  838. <id>convert-ms-native-dll</id>
  839. <phase>generate-sources</phase>
  840. <goals>
  841. <goal>exec</goal>
  842. </goals>
  843. <configuration>
  844. <executable>${basedir}\..\..\dev-support\bin\win-vs-upgrade.cmd</executable>
  845. <arguments>
  846. <argument>${basedir}\src\main\native</argument>
  847. <argument>${project.build.directory}</argument>
  848. </arguments>
  849. </configuration>
  850. </execution>
  851. <execution>
  852. <id>compile-ms-native-dll</id>
  853. <phase>compile</phase>
  854. <goals>
  855. <goal>exec</goal>
  856. </goals>
  857. <configuration>
  858. <executable>msbuild</executable>
  859. <arguments>
  860. <argument>${basedir}/src/main/native/native.sln</argument>
  861. <argument>/nologo</argument>
  862. <argument>/p:Configuration=Release</argument>
  863. <argument>/p:OutDir=${project.build.directory}/bin/</argument>
  864. <argument>/p:CustomSnappyPrefix=${snappy.prefix}</argument>
  865. <argument>/p:CustomSnappyLib=${snappy.lib}</argument>
  866. <argument>/p:CustomSnappyInclude=${snappy.include}</argument>
  867. <argument>/p:RequireSnappy=${require.snappy}</argument>
  868. <argument>/p:CustomZstdPrefix=${zstd.prefix}</argument>
  869. <argument>/p:CustomZstdLib=${zstd.lib}</argument>
  870. <argument>/p:CustomZstdInclude=${zstd.include}</argument>
  871. <argument>/p:RequireZstd=${require.zstd}</argument>
  872. <argument>/p:CustomOpensslPrefix=${openssl.prefix}</argument>
  873. <argument>/p:CustomOpensslLib=${openssl.lib}</argument>
  874. <argument>/p:CustomOpensslInclude=${openssl.include}</argument>
  875. <argument>/p:RequireOpenssl=${require.openssl}</argument>
  876. <argument>/p:RequireIsal=${require.isal}</argument>
  877. <argument>/p:CustomIsalPrefix=${isal.prefix}</argument>
  878. <argument>/p:CustomIsalLib=${isal.lib}</argument>
  879. </arguments>
  880. </configuration>
  881. </execution>
  882. </executions>
  883. </plugin>
  884. </plugins>
  885. </build>
  886. </profile>
  887. <!-- profile that starts ApacheDS KDC server -->
  888. <profile>
  889. <id>startKdc</id>
  890. <activation>
  891. <property>
  892. <name>startKdc</name>
  893. <value>true</value>
  894. </property>
  895. </activation>
  896. <build>
  897. <plugins>
  898. <plugin>
  899. <groupId>org.apache.maven.plugins</groupId>
  900. <artifactId>maven-enforcer-plugin</artifactId>
  901. <executions>
  902. <execution>
  903. <id>enforce-os</id>
  904. <goals>
  905. <goal>enforce</goal>
  906. </goals>
  907. <configuration>
  908. <rules>
  909. <!-- At present supports Mac and Unix OS family -->
  910. <requireOS>
  911. <family>mac</family>
  912. <family>unix</family>
  913. </requireOS>
  914. </rules>
  915. <fail>true</fail>
  916. </configuration>
  917. </execution>
  918. </executions>
  919. </plugin>
  920. <plugin>
  921. <groupId>org.apache.maven.plugins</groupId>
  922. <artifactId>maven-antrun-plugin</artifactId>
  923. <executions>
  924. <execution>
  925. <id>kdc</id>
  926. <phase>compile</phase>
  927. <goals>
  928. <goal>run</goal>
  929. </goals>
  930. <configuration>
  931. <target>
  932. <chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
  933. <exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
  934. <mkdir dir="${project.build.directory}/test-classes/kdc/downloads"/>
  935. <get src="https://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"/>
  936. <untar src="${project.build.directory}/test-classes/kdc/downloads/apacheds-1.5.7.tar.gz" dest="${project.build.directory}/test-classes/kdc" compression="gzip" />
  937. <copy file="${kdc.resource.dir}/server.xml" toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/conf"/>
  938. <mkdir dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif"/>
  939. <copy toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif">
  940. <fileset dir="${kdc.resource.dir}/ldif"/>
  941. </copy>
  942. <chmod file="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/apacheds.sh" perm="775" />
  943. <exec dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/" executable="./apacheds.sh" spawn="true"/>
  944. </target>
  945. </configuration>
  946. </execution>
  947. <!-- On completion of graceful test phase: closes the ApacheDS KDC server -->
  948. <execution>
  949. <id>killKdc</id>
  950. <phase>test</phase>
  951. <goals>
  952. <goal>run</goal>
  953. </goals>
  954. <configuration>
  955. <target>
  956. <chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
  957. <exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
  958. </target>
  959. </configuration>
  960. </execution>
  961. </executions>
  962. </plugin>
  963. </plugins>
  964. </build>
  965. </profile>
  966. <profile>
  967. <id>parallel-tests</id>
  968. <build>
  969. <plugins>
  970. <plugin>
  971. <groupId>org.apache.hadoop</groupId>
  972. <artifactId>hadoop-maven-plugins</artifactId>
  973. <executions>
  974. <execution>
  975. <id>parallel-tests-createdir</id>
  976. <goals>
  977. <goal>parallel-tests-createdir</goal>
  978. </goals>
  979. </execution>
  980. </executions>
  981. </plugin>
  982. <plugin>
  983. <groupId>org.apache.maven.plugins</groupId>
  984. <artifactId>maven-surefire-plugin</artifactId>
  985. <configuration>
  986. <forkCount>${testsThreadCount}</forkCount>
  987. <reuseForks>false</reuseForks>
  988. <argLine>${maven-surefire-plugin.argLine} -DminiClusterDedicatedDirs=true</argLine>
  989. <systemPropertyVariables>
  990. <testsThreadCount>${testsThreadCount}</testsThreadCount>
  991. <test.build.data>${test.build.data}/${surefire.forkNumber}</test.build.data>
  992. <test.build.dir>${test.build.dir}/${surefire.forkNumber}</test.build.dir>
  993. <hadoop.tmp.dir>${hadoop.tmp.dir}/${surefire.forkNumber}</hadoop.tmp.dir>
  994. <!-- Due to a Maven quirk, setting this to just -->
  995. <!-- surefire.forkNumber won't do the parameter substitution. -->
  996. <!-- Putting a prefix in front of it like "fork-" makes it -->
  997. <!-- work. -->
  998. <test.unique.fork.id>fork-${surefire.forkNumber}</test.unique.fork.id>
  999. </systemPropertyVariables>
  1000. </configuration>
  1001. </plugin>
  1002. </plugins>
  1003. </build>
  1004. </profile>
  1005. <profile>
  1006. <id>releasedocs</id>
  1007. <activation>
  1008. <activeByDefault>false</activeByDefault>
  1009. </activation>
  1010. <build>
  1011. <plugins>
  1012. <plugin>
  1013. <groupId>org.codehaus.mojo</groupId>
  1014. <artifactId>exec-maven-plugin</artifactId>
  1015. <executions>
  1016. <execution>
  1017. <id>releasedocs</id>
  1018. <phase>pre-site</phase>
  1019. <goals>
  1020. <goal>exec</goal>
  1021. </goals>
  1022. <configuration>
  1023. <executable>${basedir}/../../dev-support/bin/releasedocmaker</executable>
  1024. <requiresOnline>true</requiresOnline>
  1025. <arguments>
  1026. <argument>--index</argument>
  1027. <argument>--license</argument>
  1028. <argument>--outputdir</argument>
  1029. <argument>${basedir}/src/site/markdown/release</argument>
  1030. <argument>--project</argument>
  1031. <argument>HADOOP</argument>
  1032. <argument>--project</argument>
  1033. <argument>HDFS</argument>
  1034. <argument>--project</argument>
  1035. <argument>MAPREDUCE</argument>
  1036. <argument>--project</argument>
  1037. <argument>YARN</argument>
  1038. <argument>--projecttitle</argument>
  1039. <argument>Apache Hadoop</argument>
  1040. <argument>--usetoday</argument>
  1041. <argument>--fileversions</argument>
  1042. <argument>--dirversions</argument>
  1043. <argument>--version</argument>
  1044. <argument>${project.version}</argument>
  1045. </arguments>
  1046. </configuration>
  1047. </execution>
  1048. </executions>
  1049. </plugin>
  1050. <plugin>
  1051. <artifactId>maven-clean-plugin</artifactId>
  1052. <configuration>
  1053. <filesets>
  1054. <fileset>
  1055. <directory>src/site/markdown/release</directory>
  1056. <includes>
  1057. <include>${project.version}/</include>
  1058. <include>index.md</include>
  1059. </includes>
  1060. <followSymlinks>false</followSymlinks>
  1061. </fileset>
  1062. </filesets>
  1063. </configuration>
  1064. </plugin>
  1065. </plugins>
  1066. </build>
  1067. </profile>
  1068. <!-- profile to test shell code -->
  1069. <profile>
  1070. <id>shelltest</id>
  1071. <activation>
  1072. <property>
  1073. <name>!skipTests</name>
  1074. </property>
  1075. </activation>
  1076. <build>
  1077. <plugins>
  1078. <plugin>
  1079. <artifactId>maven-antrun-plugin</artifactId>
  1080. <executions>
  1081. <execution>
  1082. <id>common-test-bats-driver</id>
  1083. <phase>test</phase>
  1084. <goals>
  1085. <goal>run</goal>
  1086. </goals>
  1087. <configuration>
  1088. <target>
  1089. <exec dir="src/test/scripts"
  1090. executable="bash"
  1091. failonerror="true">
  1092. <arg value="./run-bats.sh" />
  1093. </exec>
  1094. </target>
  1095. </configuration>
  1096. </execution>
  1097. </executions>
  1098. </plugin>
  1099. </plugins>
  1100. </build>
  1101. </profile>
  1102. </profiles>
  1103. </project>