pom.xml 44 KB

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