pom.xml 48 KB

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