pom.xml 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377
  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-main</artifactId>
  21. <version>2.9.0-SNAPSHOT</version>
  22. </parent>
  23. <groupId>org.apache.hadoop</groupId>
  24. <artifactId>hadoop-project</artifactId>
  25. <version>2.9.0-SNAPSHOT</version>
  26. <description>Apache Hadoop Project POM</description>
  27. <name>Apache Hadoop Project POM</name>
  28. <packaging>pom</packaging>
  29. <properties>
  30. <!-- Set the Release year during release -->
  31. <release-year>2016</release-year>
  32. <failIfNoTests>false</failIfNoTests>
  33. <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  34. <jetty.version>6.1.26</jetty.version>
  35. <test.exclude>_</test.exclude>
  36. <test.exclude.pattern>_</test.exclude.pattern>
  37. <!-- number of threads/forks to use when running tests in parallel, see parallel-tests profile -->
  38. <testsThreadCount>4</testsThreadCount>
  39. <!-- These 2 versions are defined here because they are used -->
  40. <!-- JDIFF generation from embedded ant in the antrun plugin -->
  41. <jdiff.version>1.0.9</jdiff.version>
  42. <!-- Version number for xerces used by JDiff -->
  43. <xerces.jdiff.version>2.11.0</xerces.jdiff.version>
  44. <hadoop.assemblies.version>${project.version}</hadoop.assemblies.version>
  45. <commons-daemon.version>1.0.13</commons-daemon.version>
  46. <test.build.dir>${project.build.directory}/test-dir</test.build.dir>
  47. <test.build.data>${test.build.dir}</test.build.data>
  48. <!-- Used for building path to native library loaded by tests. Projects -->
  49. <!-- at different nesting levels in the source tree may need to override. -->
  50. <hadoop.common.build.dir>${basedir}/../../hadoop-common-project/hadoop-common/target</hadoop.common.build.dir>
  51. <java.security.egd>file:///dev/urandom</java.security.egd>
  52. <!-- avro version -->
  53. <avro.version>1.7.4</avro.version>
  54. <!-- jersey version -->
  55. <jersey.version>1.9</jersey.version>
  56. <!-- jackson versions -->
  57. <jackson.version>1.9.13</jackson.version>
  58. <jackson2.version>2.2.3</jackson2.version>
  59. <!-- ProtocolBuffer version, used to verify the protoc version and -->
  60. <!-- define the protobuf JAR version -->
  61. <protobuf.version>2.5.0</protobuf.version>
  62. <protoc.path>${env.HADOOP_PROTOC_PATH}</protoc.path>
  63. <zookeeper.version>3.4.6</zookeeper.version>
  64. <curator.version>2.7.1</curator.version>
  65. <findbugs.version>3.0.0</findbugs.version>
  66. <tomcat.version>6.0.44</tomcat.version>
  67. <!-- define the Java language version used by the compiler -->
  68. <javac.version>1.7</javac.version>
  69. <!-- The java version enforced by the maven enforcer -->
  70. <!-- more complex patterns can be used here, such as
  71. [${javac.version})
  72. for an open-ended enforcement
  73. -->
  74. <enforced.java.version>[${javac.version},)</enforced.java.version>
  75. <enforced.maven.version>[3.0.2,)</enforced.maven.version>
  76. <!-- Plugin versions and config -->
  77. <maven-surefire-plugin.argLine>-Xmx2048m -XX:MaxPermSize=768m -XX:+HeapDumpOnOutOfMemoryError</maven-surefire-plugin.argLine>
  78. <maven-surefire-plugin.version>2.17</maven-surefire-plugin.version>
  79. <maven-surefire-report-plugin.version>${maven-surefire-plugin.version}</maven-surefire-report-plugin.version>
  80. <maven-failsafe-plugin.version>${maven-surefire-plugin.version}</maven-failsafe-plugin.version>
  81. <maven-clean-plugin.version>2.5</maven-clean-plugin.version>
  82. <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
  83. <maven-install-plugin.version>2.5.1</maven-install-plugin.version>
  84. <maven-resources-plugin.version>2.6</maven-resources-plugin.version>
  85. <maven-jar-plugin.version>2.5</maven-jar-plugin.version>
  86. <maven-war-plugin.version>2.4</maven-war-plugin.version>
  87. <maven-source-plugin.version>2.3</maven-source-plugin.version>
  88. <maven-project-info-reports-plugin.version>2.7</maven-project-info-reports-plugin.version>
  89. <maven-pdf-plugin.version>1.2</maven-pdf-plugin.version>
  90. <build-helper-maven-plugin.version>1.9</build-helper-maven-plugin.version>
  91. <exec-maven-plugin.version>1.3.1</exec-maven-plugin.version>
  92. <make-maven-plugin.version>1.0-beta-1</make-maven-plugin.version>
  93. <native-maven-plugin.version>1.0-alpha-8</native-maven-plugin.version>
  94. <surefire.fork.timeout>900</surefire.fork.timeout>
  95. </properties>
  96. <dependencyManagement>
  97. <dependencies>
  98. <dependency>
  99. <groupId>jdiff</groupId>
  100. <artifactId>jdiff</artifactId>
  101. <version>${jdiff.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.hadoop</groupId>
  105. <artifactId>hadoop-assemblies</artifactId>
  106. <version>${project.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.hadoop</groupId>
  110. <artifactId>hadoop-annotations</artifactId>
  111. <version>${project.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.hadoop</groupId>
  115. <artifactId>hadoop-common</artifactId>
  116. <version>${project.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.hadoop</groupId>
  120. <artifactId>hadoop-common</artifactId>
  121. <version>${project.version}</version>
  122. <type>test-jar</type>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.hadoop</groupId>
  126. <artifactId>hadoop-auth</artifactId>
  127. <version>${project.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.hadoop</groupId>
  131. <artifactId>hadoop-auth</artifactId>
  132. <version>${project.version}</version>
  133. <type>test-jar</type>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.hadoop</groupId>
  137. <artifactId>hadoop-nfs</artifactId>
  138. <version>${project.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.hadoop</groupId>
  142. <artifactId>hadoop-hdfs</artifactId>
  143. <version>${project.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.apache.hadoop</groupId>
  147. <artifactId>hadoop-hdfs-client</artifactId>
  148. <version>${project.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.hadoop</groupId>
  152. <artifactId>hadoop-hdfs</artifactId>
  153. <version>${project.version}</version>
  154. <type>test-jar</type>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.hadoop</groupId>
  158. <artifactId>hadoop-mapreduce-client-app</artifactId>
  159. <version>${project.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.hadoop</groupId>
  163. <artifactId>hadoop-mapreduce-client-app</artifactId>
  164. <version>${project.version}</version>
  165. <type>test-jar</type>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.hadoop</groupId>
  169. <artifactId>hadoop-mapreduce-client-common</artifactId>
  170. <version>${project.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.hadoop</groupId>
  174. <artifactId>hadoop-yarn-api</artifactId>
  175. <version>${project.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.hadoop</groupId>
  179. <artifactId>hadoop-yarn-client</artifactId>
  180. <version>${project.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.hadoop</groupId>
  184. <artifactId>hadoop-mapreduce-client-core</artifactId>
  185. <version>${project.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.hadoop</groupId>
  189. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  190. <version>${project.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.apache.hadoop</groupId>
  194. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  195. <version>${project.version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.hadoop</groupId>
  199. <artifactId>hadoop-yarn</artifactId>
  200. <version>${project.version}</version>
  201. <type>pom</type>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.apache.hadoop</groupId>
  205. <artifactId>hadoop-yarn-server</artifactId>
  206. <version>${project.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.apache.hadoop</groupId>
  210. <artifactId>hadoop-yarn-server-web-proxy</artifactId>
  211. <version>${project.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.apache.hadoop</groupId>
  215. <artifactId>hadoop-yarn-server-common</artifactId>
  216. <version>${project.version}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.apache.hadoop</groupId>
  220. <artifactId>hadoop-yarn-server-tests</artifactId>
  221. <version>${project.version}</version>
  222. <type>test-jar</type>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.hadoop</groupId>
  226. <artifactId>hadoop-yarn-common</artifactId>
  227. <version>${project.version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.hadoop</groupId>
  231. <artifactId>hadoop-yarn-common</artifactId>
  232. <version>${project.version}</version>
  233. <type>test-jar</type>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.apache.hadoop</groupId>
  237. <artifactId>hadoop-yarn-registry</artifactId>
  238. <version>${project.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.apache.hadoop</groupId>
  242. <artifactId>hadoop-yarn-server-nodemanager</artifactId>
  243. <version>${project.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.apache.hadoop</groupId>
  247. <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
  248. <version>${project.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.apache.hadoop</groupId>
  252. <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
  253. <version>${project.version}</version>
  254. <type>test-jar</type>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.apache.hadoop</groupId>
  258. <artifactId>hadoop-yarn-applications-distributedshell</artifactId>
  259. <version>${project.version}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.apache.hadoop</groupId>
  263. <artifactId>hadoop-yarn-server-timeline-pluginstorage</artifactId>
  264. <version>${project.version}</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.apache.hadoop</groupId>
  268. <artifactId>hadoop-yarn-server-timeline-pluginstorage</artifactId>
  269. <type>test-jar</type>
  270. <version>${project.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.hadoop</groupId>
  274. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  275. <version>${project.version}</version>
  276. <type>test-jar</type>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.apache.hadoop</groupId>
  280. <artifactId>hadoop-mapreduce-client-hs</artifactId>
  281. <version>${project.version}</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>org.apache.hadoop</groupId>
  285. <artifactId>hadoop-mapreduce-examples</artifactId>
  286. <version>${project.version}</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.apache.hadoop</groupId>
  290. <artifactId>hadoop-gridmix</artifactId>
  291. <version>${project.version}</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.apache.hadoop</groupId>
  295. <artifactId>hadoop-streaming</artifactId>
  296. <version>${project.version}</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>org.apache.hadoop</groupId>
  300. <artifactId>hadoop-archives</artifactId>
  301. <version>${project.version}</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.apache.hadoop</groupId>
  305. <artifactId>hadoop-archive-logs</artifactId>
  306. <version>${project.version}</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.apache.hadoop</groupId>
  310. <artifactId>hadoop-distcp</artifactId>
  311. <version>${project.version}</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.apache.hadoop</groupId>
  315. <artifactId>hadoop-datajoin</artifactId>
  316. <version>${project.version}</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>org.apache.hadoop</groupId>
  320. <artifactId>hadoop-rumen</artifactId>
  321. <version>${project.version}</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.apache.hadoop</groupId>
  325. <artifactId>hadoop-extras</artifactId>
  326. <version>${project.version}</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>org.apache.hadoop</groupId>
  330. <artifactId>hadoop-ant</artifactId>
  331. <version>${project.version}</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>org.apache.hadoop</groupId>
  335. <artifactId>hadoop-client</artifactId>
  336. <version>${project.version}</version>
  337. </dependency>
  338. <dependency>
  339. <groupId>org.apache.hadoop</groupId>
  340. <artifactId>hadoop-minicluster</artifactId>
  341. <version>${project.version}</version>
  342. </dependency>
  343. <dependency>
  344. <groupId>org.apache.hadoop</groupId>
  345. <artifactId>hadoop-minikdc</artifactId>
  346. <version>${project.version}</version>
  347. </dependency>
  348. <dependency>
  349. <groupId>org.apache.hadoop</groupId>
  350. <artifactId>hadoop-openstack</artifactId>
  351. <version>${project.version}</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>org.apache.hadoop</groupId>
  355. <artifactId>hadoop-azure</artifactId>
  356. <version>${project.version}</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>org.apache.hadoop</groupId>
  360. <artifactId>hadoop-aws</artifactId>
  361. <version>${project.version}</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>org.apache.hadoop</groupId>
  365. <artifactId>hadoop-kms</artifactId>
  366. <version>${project.version}</version>
  367. <classifier>classes</classifier>
  368. <type>jar</type>
  369. </dependency>
  370. <dependency>
  371. <groupId>org.apache.hadoop</groupId>
  372. <artifactId>hadoop-kms</artifactId>
  373. <version>${project.version}</version>
  374. <type>test-jar</type>
  375. </dependency>
  376. <dependency>
  377. <groupId>com.google.guava</groupId>
  378. <artifactId>guava</artifactId>
  379. <version>11.0.2</version>
  380. </dependency>
  381. <dependency>
  382. <groupId>com.google.code.gson</groupId>
  383. <artifactId>gson</artifactId>
  384. <version>2.2.4</version>
  385. </dependency>
  386. <dependency>
  387. <groupId>commons-cli</groupId>
  388. <artifactId>commons-cli</artifactId>
  389. <version>1.2</version>
  390. </dependency>
  391. <dependency>
  392. <groupId>org.apache.commons</groupId>
  393. <artifactId>commons-math3</artifactId>
  394. <version>3.1.1</version>
  395. </dependency>
  396. <dependency>
  397. <groupId>org.apache.commons</groupId>
  398. <artifactId>commons-compress</artifactId>
  399. <version>1.4.1</version>
  400. </dependency>
  401. <dependency>
  402. <groupId>xmlenc</groupId>
  403. <artifactId>xmlenc</artifactId>
  404. <version>0.52</version>
  405. </dependency>
  406. <dependency>
  407. <groupId>commons-httpclient</groupId>
  408. <artifactId>commons-httpclient</artifactId>
  409. <version>3.1</version>
  410. </dependency>
  411. <dependency>
  412. <groupId>org.apache.httpcomponents</groupId>
  413. <artifactId>httpclient</artifactId>
  414. <version>4.5.2</version>
  415. </dependency>
  416. <dependency>
  417. <groupId>org.apache.httpcomponents</groupId>
  418. <artifactId>httpcore</artifactId>
  419. <version>4.4.4</version>
  420. </dependency>
  421. <dependency>
  422. <groupId>commons-codec</groupId>
  423. <artifactId>commons-codec</artifactId>
  424. <version>1.4</version>
  425. </dependency>
  426. <dependency>
  427. <groupId>commons-net</groupId>
  428. <artifactId>commons-net</artifactId>
  429. <version>3.1</version>
  430. </dependency>
  431. <dependency>
  432. <groupId>javax.servlet</groupId>
  433. <artifactId>servlet-api</artifactId>
  434. <version>2.5</version>
  435. </dependency>
  436. <dependency>
  437. <groupId>org.mortbay.jetty</groupId>
  438. <artifactId>jetty</artifactId>
  439. <version>${jetty.version}</version>
  440. <exclusions>
  441. <exclusion>
  442. <groupId>org.mortbay.jetty</groupId>
  443. <artifactId>servlet-api</artifactId>
  444. </exclusion>
  445. </exclusions>
  446. </dependency>
  447. <dependency>
  448. <groupId>org.mortbay.jetty</groupId>
  449. <artifactId>jetty-util</artifactId>
  450. <version>${jetty.version}</version>
  451. </dependency>
  452. <dependency>
  453. <groupId>org.apache.tomcat.embed</groupId>
  454. <artifactId>tomcat-embed-core</artifactId>
  455. <version>7.0.55</version>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.apache.tomcat.embed</groupId>
  459. <artifactId>tomcat-embed-logging-juli</artifactId>
  460. <version>7.0.55</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>javax.servlet.jsp</groupId>
  464. <artifactId>jsp-api</artifactId>
  465. <version>2.1</version>
  466. </dependency>
  467. <dependency>
  468. <groupId>org.glassfish</groupId>
  469. <artifactId>javax.servlet</artifactId>
  470. <version>3.1</version>
  471. </dependency>
  472. <dependency>
  473. <groupId>org.codehaus.plexus</groupId>
  474. <artifactId>plexus-utils</artifactId>
  475. <version>2.0.5</version>
  476. </dependency>
  477. <dependency>
  478. <groupId>org.codehaus.plexus</groupId>
  479. <artifactId>plexus-component-annotations</artifactId>
  480. <version>1.5.5</version>
  481. </dependency>
  482. <dependency>
  483. <groupId>asm</groupId>
  484. <artifactId>asm</artifactId>
  485. <version>3.2</version>
  486. </dependency>
  487. <dependency>
  488. <groupId>com.sun.jersey</groupId>
  489. <artifactId>jersey-core</artifactId>
  490. <version>${jersey.version}</version>
  491. </dependency>
  492. <dependency>
  493. <groupId>com.sun.jersey</groupId>
  494. <artifactId>jersey-json</artifactId>
  495. <version>${jersey.version}</version>
  496. <exclusions>
  497. <exclusion>
  498. <groupId>stax</groupId>
  499. <artifactId>stax-api</artifactId>
  500. </exclusion>
  501. </exclusions>
  502. </dependency>
  503. <dependency>
  504. <groupId>com.sun.jersey</groupId>
  505. <artifactId>jersey-server</artifactId>
  506. <version>${jersey.version}</version>
  507. </dependency>
  508. <dependency>
  509. <groupId>com.google.inject</groupId>
  510. <artifactId>guice</artifactId>
  511. <version>3.0</version>
  512. </dependency>
  513. <dependency>
  514. <groupId>cglib</groupId>
  515. <artifactId>cglib</artifactId>
  516. <version>2.2</version>
  517. </dependency>
  518. <dependency>
  519. <groupId>com.google.inject.extensions</groupId>
  520. <artifactId>guice-servlet</artifactId>
  521. <version>3.0</version>
  522. </dependency>
  523. <dependency>
  524. <groupId>com.sun.jersey.contribs</groupId>
  525. <artifactId>jersey-guice</artifactId>
  526. <version>${jersey.version}</version>
  527. </dependency>
  528. <dependency>
  529. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  530. <artifactId>jersey-test-framework-core</artifactId>
  531. <version>${jersey.version}</version>
  532. <scope>test</scope>
  533. </dependency>
  534. <dependency>
  535. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  536. <artifactId>jersey-test-framework-grizzly2</artifactId>
  537. <version>${jersey.version}</version>
  538. </dependency>
  539. <dependency>
  540. <groupId>io.netty</groupId>
  541. <artifactId>netty</artifactId>
  542. <version>3.6.2.Final</version>
  543. </dependency>
  544. <dependency>
  545. <groupId>io.netty</groupId>
  546. <artifactId>netty-all</artifactId>
  547. <version>4.1.0.Beta5</version>
  548. </dependency>
  549. <dependency>
  550. <groupId>com.twitter</groupId>
  551. <artifactId>hpack</artifactId>
  552. <version>0.11.0</version>
  553. </dependency>
  554. <dependency>
  555. <groupId>commons-io</groupId>
  556. <artifactId>commons-io</artifactId>
  557. <version>2.4</version>
  558. </dependency>
  559. <dependency>
  560. <groupId>org.mortbay.jetty</groupId>
  561. <artifactId>jetty-servlet-tester</artifactId>
  562. <version>${jetty.version}</version>
  563. </dependency>
  564. <dependency>
  565. <groupId>commons-logging</groupId>
  566. <artifactId>commons-logging</artifactId>
  567. <version>1.1.3</version>
  568. <exclusions>
  569. <exclusion>
  570. <groupId>avalon-framework</groupId>
  571. <artifactId>avalon-framework</artifactId>
  572. </exclusion>
  573. <exclusion>
  574. <groupId>logkit</groupId>
  575. <artifactId>logkit</artifactId>
  576. </exclusion>
  577. <exclusion>
  578. <groupId>javax.servlet</groupId>
  579. <artifactId>servlet-api</artifactId>
  580. </exclusion>
  581. </exclusions>
  582. </dependency>
  583. <dependency>
  584. <groupId>commons-logging</groupId>
  585. <artifactId>commons-logging-api</artifactId>
  586. <version>1.1</version>
  587. </dependency>
  588. <dependency>
  589. <groupId>log4j</groupId>
  590. <artifactId>log4j</artifactId>
  591. <version>1.2.17</version>
  592. <exclusions>
  593. <exclusion>
  594. <groupId>com.sun.jdmk</groupId>
  595. <artifactId>jmxtools</artifactId>
  596. </exclusion>
  597. <exclusion>
  598. <groupId>com.sun.jmx</groupId>
  599. <artifactId>jmxri</artifactId>
  600. </exclusion>
  601. <exclusion>
  602. <groupId>javax.mail</groupId>
  603. <artifactId>mail</artifactId>
  604. </exclusion>
  605. <exclusion>
  606. <groupId>javax.jms</groupId>
  607. <artifactId>jmx</artifactId>
  608. </exclusion>
  609. <exclusion>
  610. <groupId>javax.jms</groupId>
  611. <artifactId>jms</artifactId>
  612. </exclusion>
  613. </exclusions>
  614. </dependency>
  615. <dependency>
  616. <groupId>net.java.dev.jets3t</groupId>
  617. <artifactId>jets3t</artifactId>
  618. <version>0.9.0</version>
  619. </dependency>
  620. <dependency>
  621. <groupId>com.amazonaws</groupId>
  622. <artifactId>aws-java-sdk-s3</artifactId>
  623. <version>1.10.6</version>
  624. </dependency>
  625. <dependency>
  626. <groupId>org.apache.mina</groupId>
  627. <artifactId>mina-core</artifactId>
  628. <version>2.0.0-M5</version>
  629. </dependency>
  630. <dependency>
  631. <groupId>org.apache.sshd</groupId>
  632. <artifactId>sshd-core</artifactId>
  633. <version>0.14.0</version>
  634. </dependency>
  635. <dependency>
  636. <groupId>org.apache.ftpserver</groupId>
  637. <artifactId>ftplet-api</artifactId>
  638. <version>1.0.0</version>
  639. </dependency>
  640. <dependency>
  641. <groupId>org.apache.ftpserver</groupId>
  642. <artifactId>ftpserver-core</artifactId>
  643. <version>1.0.0</version>
  644. </dependency>
  645. <dependency>
  646. <groupId>org.apache.ftpserver</groupId>
  647. <artifactId>ftpserver-deprecated</artifactId>
  648. <version>1.0.0-M2</version>
  649. </dependency>
  650. <dependency>
  651. <groupId>junit</groupId>
  652. <artifactId>junit</artifactId>
  653. <version>4.11</version>
  654. </dependency>
  655. <dependency>
  656. <groupId>commons-lang</groupId>
  657. <artifactId>commons-lang</artifactId>
  658. <version>2.6</version>
  659. </dependency>
  660. <dependency>
  661. <groupId>commons-collections</groupId>
  662. <artifactId>commons-collections</artifactId>
  663. <version>3.2.2</version>
  664. </dependency>
  665. <dependency>
  666. <groupId>commons-configuration</groupId>
  667. <artifactId>commons-configuration</artifactId>
  668. <version>1.6</version>
  669. </dependency>
  670. <dependency>
  671. <groupId>org.slf4j</groupId>
  672. <artifactId>slf4j-api</artifactId>
  673. <version>1.7.10</version>
  674. </dependency>
  675. <dependency>
  676. <groupId>org.slf4j</groupId>
  677. <artifactId>slf4j-log4j12</artifactId>
  678. <version>1.7.10</version>
  679. </dependency>
  680. <dependency>
  681. <groupId>org.slf4j</groupId>
  682. <artifactId>jul-to-slf4j</artifactId>
  683. <version>1.7.10</version>
  684. </dependency>
  685. <dependency>
  686. <groupId>org.eclipse.jdt</groupId>
  687. <artifactId>core</artifactId>
  688. <version>3.1.1</version>
  689. </dependency>
  690. <dependency>
  691. <groupId>org.codehaus.jackson</groupId>
  692. <artifactId>jackson-mapper-asl</artifactId>
  693. <version>${jackson.version}</version>
  694. </dependency>
  695. <dependency>
  696. <groupId>org.codehaus.jackson</groupId>
  697. <artifactId>jackson-core-asl</artifactId>
  698. <version>${jackson.version}</version>
  699. </dependency>
  700. <dependency>
  701. <groupId>org.codehaus.jackson</groupId>
  702. <artifactId>jackson-jaxrs</artifactId>
  703. <version>${jackson.version}</version>
  704. </dependency>
  705. <dependency>
  706. <groupId>org.codehaus.jackson</groupId>
  707. <artifactId>jackson-xc</artifactId>
  708. <version>${jackson.version}</version>
  709. </dependency>
  710. <dependency>
  711. <groupId>com.fasterxml.jackson.core</groupId>
  712. <artifactId>jackson-core</artifactId>
  713. <version>${jackson2.version}</version>
  714. </dependency>
  715. <dependency>
  716. <groupId>com.fasterxml.jackson.core</groupId>
  717. <artifactId>jackson-databind</artifactId>
  718. <version>${jackson2.version}</version>
  719. </dependency>
  720. <dependency>
  721. <groupId>com.fasterxml.jackson.core</groupId>
  722. <artifactId>jackson-annotations</artifactId>
  723. <version>${jackson2.version}</version>
  724. </dependency>
  725. <dependency>
  726. <groupId>org.mockito</groupId>
  727. <artifactId>mockito-all</artifactId>
  728. <version>1.8.5</version>
  729. </dependency>
  730. <dependency>
  731. <groupId>org.mock-server</groupId>
  732. <artifactId>mockserver-netty</artifactId>
  733. <version>3.9.2</version>
  734. </dependency>
  735. <dependency>
  736. <groupId>org.apache.avro</groupId>
  737. <artifactId>avro</artifactId>
  738. <version>${avro.version}</version>
  739. </dependency>
  740. <dependency>
  741. <groupId>net.sf.kosmosfs</groupId>
  742. <artifactId>kfs</artifactId>
  743. <version>0.3</version>
  744. </dependency>
  745. <dependency>
  746. <groupId>org.apache.ant</groupId>
  747. <artifactId>ant</artifactId>
  748. <version>1.8.1</version>
  749. </dependency>
  750. <dependency>
  751. <groupId>com.google.protobuf</groupId>
  752. <artifactId>protobuf-java</artifactId>
  753. <version>${protobuf.version}</version>
  754. </dependency>
  755. <dependency>
  756. <groupId>commons-daemon</groupId>
  757. <artifactId>commons-daemon</artifactId>
  758. <version>${commons-daemon.version}</version>
  759. </dependency>
  760. <dependency>
  761. <groupId>com.jcraft</groupId>
  762. <artifactId>jsch</artifactId>
  763. <version>0.1.51</version>
  764. </dependency>
  765. <dependency>
  766. <groupId>org.apache.htrace</groupId>
  767. <artifactId>htrace-core4</artifactId>
  768. <version>4.0.1-incubating</version>
  769. </dependency>
  770. <dependency>
  771. <groupId>org.jdom</groupId>
  772. <artifactId>jdom</artifactId>
  773. <version>1.1</version>
  774. </dependency>
  775. <dependency>
  776. <groupId>com.googlecode.json-simple</groupId>
  777. <artifactId>json-simple</artifactId>
  778. <version>1.1</version>
  779. </dependency>
  780. <dependency>
  781. <groupId>org.apache.zookeeper</groupId>
  782. <artifactId>zookeeper</artifactId>
  783. <version>${zookeeper.version}</version>
  784. <exclusions>
  785. <exclusion>
  786. <!-- otherwise seems to drag in junit 3.8.1 via jline -->
  787. <groupId>junit</groupId>
  788. <artifactId>junit</artifactId>
  789. </exclusion>
  790. <exclusion>
  791. <groupId>com.sun.jdmk</groupId>
  792. <artifactId>jmxtools</artifactId>
  793. </exclusion>
  794. <exclusion>
  795. <groupId>com.sun.jmx</groupId>
  796. <artifactId>jmxri</artifactId>
  797. </exclusion>
  798. <exclusion>
  799. <groupId>org.jboss.netty</groupId>
  800. <artifactId>netty</artifactId>
  801. </exclusion>
  802. </exclusions>
  803. </dependency>
  804. <dependency>
  805. <groupId>org.apache.zookeeper</groupId>
  806. <artifactId>zookeeper</artifactId>
  807. <version>${zookeeper.version}</version>
  808. <type>test-jar</type>
  809. <exclusions>
  810. <exclusion>
  811. <groupId>org.jboss.netty</groupId>
  812. <artifactId>netty</artifactId>
  813. </exclusion>
  814. <exclusion>
  815. <groupId>jline</groupId>
  816. <artifactId>jline</artifactId>
  817. </exclusion>
  818. </exclusions>
  819. </dependency>
  820. <dependency>
  821. <groupId>org.apache.bookkeeper</groupId>
  822. <artifactId>bookkeeper-server</artifactId>
  823. <version>4.2.3</version>
  824. <scope>compile</scope>
  825. </dependency>
  826. <dependency>
  827. <groupId>org.hsqldb</groupId>
  828. <artifactId>hsqldb</artifactId>
  829. <version>2.0.0</version>
  830. </dependency>
  831. <dependency>
  832. <groupId>com.codahale.metrics</groupId>
  833. <artifactId>metrics-core</artifactId>
  834. <version>3.0.1</version>
  835. </dependency>
  836. <dependency>
  837. <groupId>org.apache.hadoop</groupId>
  838. <artifactId>hadoop-sls</artifactId>
  839. <version>${project.version}</version>
  840. </dependency>
  841. <dependency>
  842. <groupId>com.google.code.findbugs</groupId>
  843. <artifactId>jsr305</artifactId>
  844. <version>${findbugs.version}</version>
  845. </dependency>
  846. <dependency>
  847. <groupId>javax.xml.bind</groupId>
  848. <artifactId>jaxb-api</artifactId>
  849. <version>2.2.2</version>
  850. </dependency>
  851. <dependency>
  852. <groupId>org.codehaus.jettison</groupId>
  853. <artifactId>jettison</artifactId>
  854. <version>1.1</version>
  855. <exclusions>
  856. <exclusion>
  857. <groupId>stax</groupId>
  858. <artifactId>stax-api</artifactId>
  859. </exclusion>
  860. </exclusions>
  861. </dependency>
  862. <dependency>
  863. <groupId>com.sun.jersey</groupId>
  864. <artifactId>jersey-client</artifactId>
  865. <version>${jersey.version}</version>
  866. </dependency>
  867. <dependency>
  868. <groupId>org.glassfish.grizzly</groupId>
  869. <artifactId>grizzly-http-servlet</artifactId>
  870. <version>2.1.2</version>
  871. </dependency>
  872. <dependency>
  873. <groupId>org.fusesource.leveldbjni</groupId>
  874. <artifactId>leveldbjni-all</artifactId>
  875. <version>1.8</version>
  876. </dependency>
  877. <dependency>
  878. <groupId>org.apache.directory.server</groupId>
  879. <artifactId>apacheds-kerberos-codec</artifactId>
  880. <version>2.0.0-M15</version>
  881. </dependency>
  882. <dependency>
  883. <groupId>xerces</groupId>
  884. <artifactId>xercesImpl</artifactId>
  885. <version>2.9.1</version>
  886. </dependency>
  887. <dependency>
  888. <groupId>org.apache.curator</groupId>
  889. <artifactId>curator-recipes</artifactId>
  890. <version>${curator.version}</version>
  891. </dependency>
  892. <dependency>
  893. <groupId>org.apache.curator</groupId>
  894. <artifactId>curator-client</artifactId>
  895. <version>${curator.version}</version>
  896. </dependency>
  897. <dependency>
  898. <groupId>org.apache.curator</groupId>
  899. <artifactId>curator-framework</artifactId>
  900. <version>${curator.version}</version>
  901. </dependency>
  902. <dependency>
  903. <groupId>org.apache.curator</groupId>
  904. <artifactId>curator-test</artifactId>
  905. <version>${curator.version}</version>
  906. </dependency>
  907. <dependency>
  908. <groupId>org.bouncycastle</groupId>
  909. <artifactId>bcprov-jdk16</artifactId>
  910. <version>1.46</version>
  911. <scope>test</scope>
  912. </dependency>
  913. <dependency>
  914. <groupId>com.microsoft.azure</groupId>
  915. <artifactId>azure-storage</artifactId>
  916. <version>2.2.0</version>
  917. </dependency>
  918. <dependency>
  919. <groupId>com.nimbusds</groupId>
  920. <artifactId>nimbus-jose-jwt</artifactId>
  921. <version>3.9</version>
  922. <scope>compile</scope>
  923. <exclusions>
  924. <exclusion>
  925. <groupId>org.bouncycastle</groupId>
  926. <artifactId>bcprov-jdk15on</artifactId>
  927. </exclusion>
  928. </exclusions>
  929. </dependency>
  930. <dependency>
  931. <groupId>org.skyscreamer</groupId>
  932. <artifactId>jsonassert</artifactId>
  933. <version>1.3.0</version>
  934. </dependency>
  935. </dependencies>
  936. </dependencyManagement>
  937. <build>
  938. <pluginManagement>
  939. <plugins>
  940. <plugin>
  941. <artifactId>maven-clean-plugin</artifactId>
  942. <version>${maven-clean-plugin.version}</version>
  943. </plugin>
  944. <plugin>
  945. <groupId>org.apache.maven.plugins</groupId>
  946. <artifactId>maven-compiler-plugin</artifactId>
  947. <version>${maven-compiler-plugin.version}</version>
  948. <configuration>
  949. <source>${javac.version}</source>
  950. <target>${javac.version}</target>
  951. <useIncrementalCompilation>false</useIncrementalCompilation>
  952. </configuration>
  953. </plugin>
  954. <plugin>
  955. <groupId>org.apache.maven.plugins</groupId>
  956. <artifactId>maven-dependency-plugin</artifactId>
  957. <version>2.2</version>
  958. </plugin>
  959. <plugin>
  960. <groupId>org.codehaus.mojo</groupId>
  961. <artifactId>build-helper-maven-plugin</artifactId>
  962. <version>${build-helper-maven-plugin.version}</version>
  963. </plugin>
  964. <plugin>
  965. <groupId>org.apache.maven.plugins</groupId>
  966. <artifactId>maven-surefire-plugin</artifactId>
  967. <version>${maven-surefire-plugin.version}</version>
  968. </plugin>
  969. <plugin>
  970. <groupId>org.apache.maven.plugins</groupId>
  971. <artifactId>maven-install-plugin</artifactId>
  972. <version>${maven-install-plugin.version}</version>
  973. </plugin>
  974. <plugin>
  975. <groupId>org.apache.maven.plugins</groupId>
  976. <artifactId>maven-jar-plugin</artifactId>
  977. <version>${maven-jar-plugin.version}</version>
  978. </plugin>
  979. <plugin>
  980. <groupId>org.apache.maven.plugins</groupId>
  981. <artifactId>maven-javadoc-plugin</artifactId>
  982. <version>2.8.1</version>
  983. <configuration>
  984. <additionalparam>-Xmaxwarns 10000</additionalparam>
  985. </configuration>
  986. </plugin>
  987. <plugin>
  988. <groupId>org.apache.maven.plugins</groupId>
  989. <artifactId>maven-war-plugin</artifactId>
  990. <version>${maven-war-plugin.version}</version>
  991. </plugin>
  992. <plugin>
  993. <groupId>org.codehaus.mojo</groupId>
  994. <artifactId>findbugs-maven-plugin</artifactId>
  995. <version>${findbugs.version}</version>
  996. </plugin>
  997. <plugin>
  998. <groupId>org.codehaus.mojo</groupId>
  999. <artifactId>native-maven-plugin</artifactId>
  1000. <version>${native-maven-plugin.version}</version>
  1001. </plugin>
  1002. <plugin>
  1003. <groupId>org.codehaus.mojo</groupId>
  1004. <artifactId>make-maven-plugin</artifactId>
  1005. <version>${make-maven-plugin.version}</version>
  1006. </plugin>
  1007. <plugin>
  1008. <groupId>org.apache.maven.plugins</groupId>
  1009. <artifactId>maven-source-plugin</artifactId>
  1010. <version>${maven-source-plugin.version}</version>
  1011. </plugin>
  1012. <plugin>
  1013. <groupId>org.apache.avro</groupId>
  1014. <artifactId>avro-maven-plugin</artifactId>
  1015. <version>${avro.version}</version>
  1016. </plugin>
  1017. <plugin>
  1018. <groupId>org.apache.maven.plugins</groupId>
  1019. <artifactId>maven-project-info-reports-plugin</artifactId>
  1020. <version>${maven-project-info-reports-plugin.version}</version>
  1021. </plugin>
  1022. <plugin>
  1023. <groupId>org.apache.maven.plugins</groupId>
  1024. <artifactId>maven-resources-plugin</artifactId>
  1025. <version>${maven-resources-plugin.version}</version>
  1026. </plugin>
  1027. <plugin>
  1028. <groupId>org.codehaus.mojo</groupId>
  1029. <artifactId>exec-maven-plugin</artifactId>
  1030. <version>${exec-maven-plugin.version}</version>
  1031. </plugin>
  1032. <plugin>
  1033. <groupId>org.apache.maven.plugins</groupId>
  1034. <artifactId>maven-pdf-plugin</artifactId>
  1035. <version>${maven-pdf-plugin.version}</version>
  1036. </plugin>
  1037. <plugin>
  1038. <groupId>org.apache.hadoop</groupId>
  1039. <artifactId>hadoop-maven-plugins</artifactId>
  1040. <version>${project.version}</version>
  1041. </plugin>
  1042. </plugins>
  1043. </pluginManagement>
  1044. <plugins>
  1045. <plugin>
  1046. <groupId>org.codehaus.mojo</groupId>
  1047. <artifactId>findbugs-maven-plugin</artifactId>
  1048. </plugin>
  1049. <plugin>
  1050. <groupId>org.apache.maven.plugins</groupId>
  1051. <artifactId>maven-antrun-plugin</artifactId>
  1052. <executions>
  1053. <execution>
  1054. <id>create-testdirs</id>
  1055. <phase>validate</phase>
  1056. <goals>
  1057. <goal>run</goal>
  1058. </goals>
  1059. <configuration>
  1060. <target>
  1061. <mkdir dir="${test.build.dir}"/>
  1062. <mkdir dir="${test.build.data}"/>
  1063. </target>
  1064. </configuration>
  1065. </execution>
  1066. </executions>
  1067. </plugin>
  1068. <plugin>
  1069. <groupId>org.apache.maven.plugins</groupId>
  1070. <artifactId>maven-enforcer-plugin</artifactId>
  1071. <configuration>
  1072. <rules>
  1073. <requireMavenVersion>
  1074. <version>[3.0.0,)</version>
  1075. </requireMavenVersion>
  1076. <requireJavaVersion>
  1077. <version>1.6</version>
  1078. </requireJavaVersion>
  1079. </rules>
  1080. </configuration>
  1081. <executions>
  1082. <execution>
  1083. <id>clean</id>
  1084. <goals>
  1085. <goal>enforce</goal>
  1086. </goals>
  1087. <phase>pre-clean</phase>
  1088. <inherited>false</inherited>
  1089. </execution>
  1090. <execution>
  1091. <id>default</id>
  1092. <goals>
  1093. <goal>enforce</goal>
  1094. </goals>
  1095. <phase>validate</phase>
  1096. <inherited>false</inherited>
  1097. </execution>
  1098. <execution>
  1099. <id>site</id>
  1100. <goals>
  1101. <goal>enforce</goal>
  1102. </goals>
  1103. <phase>pre-site</phase>
  1104. <inherited>false</inherited>
  1105. </execution>
  1106. <execution>
  1107. <id>depcheck</id>
  1108. <configuration>
  1109. <rules>
  1110. <DependencyConvergence>
  1111. <uniqueVersions>true</uniqueVersions>
  1112. </DependencyConvergence>
  1113. </rules>
  1114. </configuration>
  1115. <goals>
  1116. <goal>enforce</goal>
  1117. </goals>
  1118. <phase>verify</phase>
  1119. </execution>
  1120. </executions>
  1121. </plugin>
  1122. <plugin>
  1123. <groupId>org.apache.maven.plugins</groupId>
  1124. <artifactId>maven-surefire-plugin</artifactId>
  1125. <configuration>
  1126. <reuseForks>false</reuseForks>
  1127. <forkedProcessTimeoutInSeconds>${surefire.fork.timeout}</forkedProcessTimeoutInSeconds>
  1128. <argLine>${maven-surefire-plugin.argLine}</argLine>
  1129. <environmentVariables>
  1130. <HADOOP_COMMON_HOME>${hadoop.common.build.dir}</HADOOP_COMMON_HOME>
  1131. <!-- HADOOP_HOME required for tests on Windows to find winutils -->
  1132. <HADOOP_HOME>${hadoop.common.build.dir}</HADOOP_HOME>
  1133. <LD_LIBRARY_PATH>${env.LD_LIBRARY_PATH}:${project.build.directory}/native/target/usr/local/lib:${hadoop.common.build.dir}/native/target/usr/local/lib</LD_LIBRARY_PATH>
  1134. <DYLD_LIBRARY_PATH>${env.DYLD_LIBRARY_PATH}:${project.build.directory}/native/target/usr/local/lib:${hadoop.common.build.dir}/native/target/usr/local/lib</DYLD_LIBRARY_PATH>
  1135. <MALLOC_ARENA_MAX>4</MALLOC_ARENA_MAX>
  1136. </environmentVariables>
  1137. <systemPropertyVariables>
  1138. <hadoop.log.dir>${project.build.directory}/log</hadoop.log.dir>
  1139. <hadoop.tmp.dir>${project.build.directory}/tmp</hadoop.tmp.dir>
  1140. <!-- TODO: all references in testcases should be updated to this default -->
  1141. <test.build.dir>${test.build.dir}</test.build.dir>
  1142. <test.build.data>${test.build.data}</test.build.data>
  1143. <test.build.webapps>${test.build.webapps}</test.build.webapps>
  1144. <test.cache.data>${test.cache.data}</test.cache.data>
  1145. <test.build.classes>${test.build.classes}</test.build.classes>
  1146. <java.net.preferIPv4Stack>true</java.net.preferIPv4Stack>
  1147. <java.security.krb5.conf>${project.build.directory}/test-classes/krb5.conf</java.security.krb5.conf>
  1148. <java.security.egd>${java.security.egd}</java.security.egd>
  1149. <require.test.libhadoop>${require.test.libhadoop}</require.test.libhadoop>
  1150. </systemPropertyVariables>
  1151. <includes>
  1152. <include>**/Test*.java</include>
  1153. </includes>
  1154. <excludes>
  1155. <exclude>**/${test.exclude}.java</exclude>
  1156. <exclude>${test.exclude.pattern}</exclude>
  1157. <exclude>**/Test*$*.java</exclude>
  1158. </excludes>
  1159. </configuration>
  1160. </plugin>
  1161. <plugin>
  1162. <groupId>org.apache.maven.plugins</groupId>
  1163. <artifactId>maven-pdf-plugin</artifactId>
  1164. <configuration>
  1165. <outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
  1166. <includeReports>false</includeReports>
  1167. </configuration>
  1168. </plugin>
  1169. </plugins>
  1170. </build>
  1171. <profiles>
  1172. <profile>
  1173. <id>os.linux</id>
  1174. <activation>
  1175. <os>
  1176. <family>!Mac</family>
  1177. </os>
  1178. </activation>
  1179. <properties>
  1180. <build.platform>${os.name}-${os.arch}-${sun.arch.data.model}</build.platform>
  1181. </properties>
  1182. </profile>
  1183. <profile>
  1184. <id>os.mac</id>
  1185. <activation>
  1186. <os>
  1187. <family>Mac</family>
  1188. </os>
  1189. </activation>
  1190. <properties>
  1191. <build.platform>Mac_OS_X-${sun.arch.data.model}</build.platform>
  1192. </properties>
  1193. </profile>
  1194. <profile>
  1195. <id>native-win</id>
  1196. <activation>
  1197. <os>
  1198. <family>Windows</family>
  1199. </os>
  1200. </activation>
  1201. <properties>
  1202. <!-- We must use this exact string for egd on Windows, because the -->
  1203. <!-- JVM will check for an exact string match on this. If found, it -->
  1204. <!-- will use a native entropy provider. This will not really -->
  1205. <!-- attempt to open a file at this path. -->
  1206. <java.security.egd>file:/dev/urandom</java.security.egd>
  1207. <bundle.snappy.in.bin>true</bundle.snappy.in.bin>
  1208. <bundle.openssl.in.bin>true</bundle.openssl.in.bin>
  1209. </properties>
  1210. <build>
  1211. <plugins>
  1212. <plugin>
  1213. <groupId>org.apache.maven.plugins</groupId>
  1214. <artifactId>maven-surefire-plugin</artifactId>
  1215. <configuration>
  1216. <environmentVariables>
  1217. <!-- Specify where to look for the native DLL on Windows -->
  1218. <PATH>${env.PATH};${hadoop.common.build.dir}/bin;${snappy.lib}</PATH>
  1219. <PATH>${env.PATH};${hadoop.common.build.dir}/bin;${openssl.lib}</PATH>
  1220. </environmentVariables>
  1221. </configuration>
  1222. </plugin>
  1223. </plugins>
  1224. </build>
  1225. </profile>
  1226. <profile>
  1227. <id>test-patch</id>
  1228. <activation>
  1229. <activeByDefault>false</activeByDefault>
  1230. </activation>
  1231. <build>
  1232. <plugins>
  1233. <plugin>
  1234. <groupId>org.apache.maven.plugins</groupId>
  1235. <artifactId>maven-compiler-plugin</artifactId>
  1236. <configuration>
  1237. <fork>true</fork>
  1238. <source>${javac.version}</source>
  1239. <target>${javac.version}</target>
  1240. <compilerArguments>
  1241. <Xlint/>
  1242. <Xmaxwarns>9999</Xmaxwarns>
  1243. </compilerArguments>
  1244. </configuration>
  1245. </plugin>
  1246. </plugins>
  1247. </build>
  1248. </profile>
  1249. <profile>
  1250. <id>dist</id>
  1251. <build>
  1252. <plugins>
  1253. <plugin>
  1254. <groupId>org.apache.maven.plugins</groupId>
  1255. <artifactId>maven-javadoc-plugin</artifactId>
  1256. <executions>
  1257. <execution>
  1258. <!-- build javadoc jars per jar for publishing to maven -->
  1259. <id>module-javadocs</id>
  1260. <phase>package</phase>
  1261. <goals>
  1262. <goal>jar</goal>
  1263. </goals>
  1264. <configuration>
  1265. <destDir>${project.build.directory}</destDir>
  1266. </configuration>
  1267. </execution>
  1268. </executions>
  1269. </plugin>
  1270. <plugin>
  1271. <groupId>org.apache.maven.plugins</groupId>
  1272. <artifactId>maven-source-plugin</artifactId>
  1273. <executions>
  1274. <execution>
  1275. <!-- builds source jars and attaches them to the project for publishing -->
  1276. <id>hadoop-java-sources</id>
  1277. <phase>package</phase>
  1278. <goals>
  1279. <goal>jar-no-fork</goal>
  1280. <goal>test-jar-no-fork</goal>
  1281. </goals>
  1282. </execution>
  1283. </executions>
  1284. </plugin>
  1285. <plugin>
  1286. <groupId>org.apache.maven.plugins</groupId>
  1287. <artifactId>maven-enforcer-plugin</artifactId>
  1288. <executions>
  1289. <execution>
  1290. <id>dist-enforce</id>
  1291. <phase>package</phase>
  1292. <goals>
  1293. <goal>enforce</goal>
  1294. </goals>
  1295. </execution>
  1296. </executions>
  1297. </plugin>
  1298. </plugins>
  1299. </build>
  1300. </profile>
  1301. </profiles>
  1302. </project>