pom.xml 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  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>3.3.0-SNAPSHOT</version>
  22. </parent>
  23. <artifactId>hadoop-project</artifactId>
  24. <version>3.3.0-SNAPSHOT</version>
  25. <description>Apache Hadoop Project POM</description>
  26. <name>Apache Hadoop Project POM</name>
  27. <packaging>pom</packaging>
  28. <inceptionYear>2008</inceptionYear>
  29. <properties>
  30. <!-- Set the Release year during release -->
  31. <release-year>2018</release-year>
  32. <failIfNoTests>false</failIfNoTests>
  33. <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  34. <jetty.version>9.3.24.v20180605</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. <kafka.version>0.8.2.1</kafka.version>
  45. <hadoop.assemblies.version>3.3.0-SNAPSHOT</hadoop.assemblies.version>
  46. <commons-daemon.version>1.0.13</commons-daemon.version>
  47. <test.build.dir>${project.build.directory}/test-dir</test.build.dir>
  48. <test.build.data>${test.build.dir}</test.build.data>
  49. <!-- Used for building path to native library loaded by tests. Projects -->
  50. <!-- at different nesting levels in the source tree may need to override. -->
  51. <hadoop.common.build.dir>${basedir}/../../hadoop-common-project/hadoop-common/target</hadoop.common.build.dir>
  52. <java.security.egd>file:///dev/urandom</java.security.egd>
  53. <!-- avro version -->
  54. <avro.version>1.7.7</avro.version>
  55. <!-- jersey version -->
  56. <jersey.version>1.19</jersey.version>
  57. <!-- jackson versions -->
  58. <jackson.version>1.9.13</jackson.version>
  59. <jackson2.version>2.9.5</jackson2.version>
  60. <!-- httpcomponents versions -->
  61. <httpclient.version>4.5.2</httpclient.version>
  62. <httpcore.version>4.4.4</httpcore.version>
  63. <!-- SLF4J version -->
  64. <slf4j.version>1.7.25</slf4j.version>
  65. <!-- com.google.re2j version -->
  66. <re2j.version>1.1</re2j.version>
  67. <!-- ProtocolBuffer version, used to verify the protoc version and -->
  68. <!-- define the protobuf JAR version -->
  69. <protobuf.version>2.5.0</protobuf.version>
  70. <protoc.path>${env.HADOOP_PROTOC_PATH}</protoc.path>
  71. <zookeeper.version>3.4.13</zookeeper.version>
  72. <curator.version>2.13.0</curator.version>
  73. <findbugs.version>3.0.0</findbugs.version>
  74. <spotbugs.version>3.1.0-RC1</spotbugs.version>
  75. <dnsjava.version>2.1.7</dnsjava.version>
  76. <guava.version>11.0.2</guava.version>
  77. <guice.version>4.0</guice.version>
  78. <joda-time.version>2.9.9</joda-time.version>
  79. <bouncycastle.version>1.60</bouncycastle.version>
  80. <!-- Required for testing LDAP integration -->
  81. <apacheds.version>2.0.0-M21</apacheds.version>
  82. <ldap-api.version>1.0.0-M33</ldap-api.version>
  83. <jcache.version>1.0-alpha-1</jcache.version>
  84. <ehcache.version>3.3.1</ehcache.version>
  85. <hikari.version>2.4.12</hikari.version>
  86. <mssql.version>6.2.1.jre7</mssql.version>
  87. <okhttp.version>2.7.5</okhttp.version>
  88. <!-- Maven protoc compiler -->
  89. <protobuf-maven-plugin.version>0.5.1</protobuf-maven-plugin.version>
  90. <protobuf-compile.version>3.5.1</protobuf-compile.version>
  91. <grpc.version>1.10.0</grpc.version>
  92. <os-maven-plugin.version>1.5.0.Final</os-maven-plugin.version>
  93. <!-- define the Java language version used by the compiler -->
  94. <javac.version>1.8</javac.version>
  95. <!-- The java version enforced by the maven enforcer -->
  96. <!-- more complex patterns can be used here, such as
  97. [${javac.version})
  98. for an open-ended enforcement
  99. -->
  100. <enforced.java.version>[${javac.version},)</enforced.java.version>
  101. <enforced.maven.version>[3.3.0,)</enforced.maven.version>
  102. <!-- Plugin versions and config -->
  103. <maven-surefire-plugin.argLine>-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError</maven-surefire-plugin.argLine>
  104. <maven-surefire-plugin.version>3.0.0-M1</maven-surefire-plugin.version>
  105. <maven-surefire-report-plugin.version>${maven-surefire-plugin.version}</maven-surefire-report-plugin.version>
  106. <maven-failsafe-plugin.version>${maven-surefire-plugin.version}</maven-failsafe-plugin.version>
  107. <maven-clean-plugin.version>2.5</maven-clean-plugin.version>
  108. <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
  109. <maven-install-plugin.version>2.5.1</maven-install-plugin.version>
  110. <maven-resources-plugin.version>2.6</maven-resources-plugin.version>
  111. <maven-shade-plugin.version>3.2.0</maven-shade-plugin.version>
  112. <maven-jar-plugin.version>2.5</maven-jar-plugin.version>
  113. <maven-war-plugin.version>3.1.0</maven-war-plugin.version>
  114. <maven-source-plugin.version>2.3</maven-source-plugin.version>
  115. <maven-pdf-plugin.version>1.2</maven-pdf-plugin.version>
  116. <maven-remote-resources-plugin.version>1.5</maven-remote-resources-plugin.version>
  117. <build-helper-maven-plugin.version>1.9</build-helper-maven-plugin.version>
  118. <exec-maven-plugin.version>1.3.1</exec-maven-plugin.version>
  119. <make-maven-plugin.version>1.0-beta-1</make-maven-plugin.version>
  120. <surefire.fork.timeout>900</surefire.fork.timeout>
  121. <aws-java-sdk.version>1.11.375</aws-java-sdk.version>
  122. <hsqldb.version>2.3.4</hsqldb.version>
  123. <frontend-maven-plugin.version>1.5</frontend-maven-plugin.version>
  124. <!-- the version of Hadoop declared in the version resources; can be overridden
  125. so that Hadoop 3.x can declare itself a 2.x artifact. -->
  126. <declared.hadoop.version>${hadoop.version}</declared.hadoop.version>
  127. <swagger-annotations-version>1.5.4</swagger-annotations-version>
  128. <snakeyaml.version>1.16</snakeyaml.version>
  129. <hbase.one.version>1.4.8</hbase.one.version>
  130. <hbase.two.version>2.0.2</hbase.two.version>
  131. <junit.version>4.12</junit.version>
  132. <junit.jupiter.version>5.3.1</junit.jupiter.version>
  133. <junit.vintage.version>5.3.1</junit.vintage.version>
  134. <junit.platform.version>1.3.1</junit.platform.version>
  135. <jline.version>3.9.0</jline.version>
  136. </properties>
  137. <dependencyManagement>
  138. <dependencies>
  139. <dependency>
  140. <groupId>com.squareup.okhttp</groupId>
  141. <artifactId>okhttp</artifactId>
  142. <version>${okhttp.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.squareup.okhttp3</groupId>
  146. <artifactId>mockwebserver</artifactId>
  147. <version>3.7.0</version>
  148. <scope>test</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>jdiff</groupId>
  152. <artifactId>jdiff</artifactId>
  153. <version>${jdiff.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.hadoop</groupId>
  157. <artifactId>hadoop-assemblies</artifactId>
  158. <version>${hadoop.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.apache.hadoop</groupId>
  162. <artifactId>hadoop-annotations</artifactId>
  163. <version>${hadoop.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.hadoop</groupId>
  167. <artifactId>hadoop-client-modules</artifactId>
  168. <version>${hadoop.version}</version>
  169. <type>pom</type>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.hadoop</groupId>
  173. <artifactId>hadoop-client-api</artifactId>
  174. <version>${hadoop.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.hadoop</groupId>
  178. <artifactId>hadoop-client-check-invariants</artifactId>
  179. <version>${hadoop.version}</version>
  180. <type>pom</type>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.hadoop</groupId>
  184. <artifactId>hadoop-client-check-test-invariants</artifactId>
  185. <version>${hadoop.version}</version>
  186. <type>pom</type>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.apache.hadoop</groupId>
  190. <artifactId>hadoop-client-integration-tests</artifactId>
  191. <version>${hadoop.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.apache.hadoop</groupId>
  195. <artifactId>hadoop-client-runtime</artifactId>
  196. <version>${hadoop.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.apache.hadoop</groupId>
  200. <artifactId>hadoop-client-minicluster</artifactId>
  201. <version>${hadoop.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.apache.hadoop</groupId>
  205. <artifactId>hadoop-common</artifactId>
  206. <version>${hadoop.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.apache.hadoop</groupId>
  210. <artifactId>hadoop-common</artifactId>
  211. <version>${hadoop.version}</version>
  212. <type>test-jar</type>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.apache.hadoop</groupId>
  216. <artifactId>hadoop-auth</artifactId>
  217. <version>${hadoop.version}</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.apache.hadoop</groupId>
  221. <artifactId>hadoop-auth</artifactId>
  222. <version>${hadoop.version}</version>
  223. <type>test-jar</type>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.apache.hadoop</groupId>
  227. <artifactId>hadoop-nfs</artifactId>
  228. <version>${hadoop.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.apache.hadoop</groupId>
  232. <artifactId>hadoop-hdfs</artifactId>
  233. <version>${hadoop.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.apache.hadoop</groupId>
  237. <artifactId>hadoop-hdfs-client</artifactId>
  238. <version>${hadoop.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.apache.hadoop</groupId>
  242. <artifactId>hadoop-hdfs-rbf</artifactId>
  243. <version>${hadoop.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.apache.hadoop</groupId>
  247. <artifactId>hadoop-hdfs</artifactId>
  248. <version>${hadoop.version}</version>
  249. <type>test-jar</type>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.apache.hadoop</groupId>
  253. <artifactId>hadoop-mapreduce-client-app</artifactId>
  254. <version>${hadoop.version}</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.apache.hadoop</groupId>
  258. <artifactId>hadoop-mapreduce-client-app</artifactId>
  259. <version>${hadoop.version}</version>
  260. <type>test-jar</type>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.hadoop</groupId>
  264. <artifactId>hadoop-mapreduce-client-common</artifactId>
  265. <version>${hadoop.version}</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.hadoop</groupId>
  269. <artifactId>hadoop-yarn-api</artifactId>
  270. <version>${hadoop.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.hadoop</groupId>
  274. <artifactId>hadoop-yarn-client</artifactId>
  275. <version>${hadoop.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.apache.hadoop</groupId>
  279. <artifactId>hadoop-mapreduce-client-core</artifactId>
  280. <version>${hadoop.version}</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.apache.hadoop</groupId>
  284. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  285. <version>${hadoop.version}</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>org.apache.hadoop</groupId>
  289. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  290. <version>${hadoop.version}</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>org.apache.hadoop</groupId>
  294. <artifactId>hadoop-yarn</artifactId>
  295. <version>${hadoop.version}</version>
  296. <type>pom</type>
  297. </dependency>
  298. <dependency>
  299. <groupId>org.apache.hadoop</groupId>
  300. <artifactId>hadoop-yarn-server</artifactId>
  301. <version>${hadoop.version}</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.apache.hadoop</groupId>
  305. <artifactId>hadoop-yarn-server-web-proxy</artifactId>
  306. <version>${hadoop.version}</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.apache.hadoop</groupId>
  310. <artifactId>hadoop-yarn-server-common</artifactId>
  311. <version>${hadoop.version}</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.apache.hadoop</groupId>
  315. <artifactId>hadoop-yarn-server-common</artifactId>
  316. <version>${hadoop.version}</version>
  317. <type>test-jar</type>
  318. </dependency>
  319. <dependency>
  320. <groupId>org.apache.hadoop</groupId>
  321. <artifactId>hadoop-yarn-server-tests</artifactId>
  322. <version>${hadoop.version}</version>
  323. <type>test-jar</type>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.apache.hadoop</groupId>
  327. <artifactId>hadoop-yarn-common</artifactId>
  328. <version>${hadoop.version}</version>
  329. </dependency>
  330. <dependency>
  331. <groupId>org.apache.hadoop</groupId>
  332. <artifactId>hadoop-yarn-common</artifactId>
  333. <version>${hadoop.version}</version>
  334. <type>test-jar</type>
  335. </dependency>
  336. <dependency>
  337. <groupId>org.apache.hadoop</groupId>
  338. <artifactId>hadoop-registry</artifactId>
  339. <version>${hadoop.version}</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.apache.hadoop</groupId>
  343. <artifactId>hadoop-yarn-server-nodemanager</artifactId>
  344. <version>${hadoop.version}</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>org.apache.hadoop</groupId>
  348. <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
  349. <version>${hadoop.version}</version>
  350. </dependency>
  351. <dependency>
  352. <groupId>org.apache.hadoop</groupId>
  353. <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
  354. <version>${hadoop.version}</version>
  355. <type>test-jar</type>
  356. </dependency>
  357. <dependency>
  358. <groupId>org.apache.hadoop</groupId>
  359. <artifactId>hadoop-yarn-server-applicationhistoryservice</artifactId>
  360. <version>${hadoop.version}</version>
  361. </dependency>
  362. <dependency>
  363. <groupId>org.apache.hadoop</groupId>
  364. <artifactId>hadoop-yarn-server-timelineservice</artifactId>
  365. <version>${hadoop.version}</version>
  366. </dependency>
  367. <dependency>
  368. <groupId>org.apache.hadoop</groupId>
  369. <artifactId>hadoop-yarn-server-timelineservice</artifactId>
  370. <version>${hadoop.version}</version>
  371. <type>test-jar</type>
  372. </dependency>
  373. <dependency>
  374. <groupId>org.apache.hadoop</groupId>
  375. <artifactId>hadoop-yarn-server-timelineservice-hbase-client</artifactId>
  376. <version>${hadoop.version}</version>
  377. </dependency>
  378. <dependency>
  379. <groupId>org.apache.hadoop</groupId>
  380. <artifactId>hadoop-yarn-server-timelineservice-hbase-common</artifactId>
  381. <version>${hadoop.version}</version>
  382. </dependency>
  383. <dependency>
  384. <groupId>org.apache.hadoop</groupId>
  385. <artifactId>hadoop-yarn-applications-distributedshell</artifactId>
  386. <version>${hadoop.version}</version>
  387. </dependency>
  388. <dependency>
  389. <groupId>org.apache.hadoop</groupId>
  390. <artifactId>hadoop-yarn-server-timeline-pluginstorage</artifactId>
  391. <version>${hadoop.version}</version>
  392. </dependency>
  393. <dependency>
  394. <groupId>org.apache.hadoop</groupId>
  395. <artifactId>hadoop-yarn-server-timeline-pluginstorage</artifactId>
  396. <type>test-jar</type>
  397. <version>${hadoop.version}</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>org.apache.hadoop</groupId>
  401. <artifactId>hadoop-yarn-server-router</artifactId>
  402. <version>${hadoop.version}</version>
  403. </dependency>
  404. <dependency>
  405. <groupId>org.apache.hadoop</groupId>
  406. <artifactId>hadoop-yarn-services-core</artifactId>
  407. <version>${hadoop.version}</version>
  408. </dependency>
  409. <dependency>
  410. <groupId>org.apache.hadoop</groupId>
  411. <artifactId>hadoop-yarn-services-core</artifactId>
  412. <version>${hadoop.version}</version>
  413. <type>test-jar</type>
  414. </dependency>
  415. <dependency>
  416. <groupId>org.apache.hadoop</groupId>
  417. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  418. <version>${hadoop.version}</version>
  419. <type>test-jar</type>
  420. </dependency>
  421. <dependency>
  422. <groupId>org.apache.hadoop</groupId>
  423. <artifactId>hadoop-mapreduce-client-hs</artifactId>
  424. <version>${hadoop.version}</version>
  425. </dependency>
  426. <dependency>
  427. <groupId>org.apache.hadoop</groupId>
  428. <artifactId>hadoop-mapreduce-examples</artifactId>
  429. <version>${hadoop.version}</version>
  430. </dependency>
  431. <dependency>
  432. <groupId>org.apache.hadoop</groupId>
  433. <artifactId>hadoop-gridmix</artifactId>
  434. <version>${hadoop.version}</version>
  435. </dependency>
  436. <dependency>
  437. <groupId>org.apache.hadoop</groupId>
  438. <artifactId>hadoop-streaming</artifactId>
  439. <version>${hadoop.version}</version>
  440. </dependency>
  441. <dependency>
  442. <groupId>org.apache.hadoop</groupId>
  443. <artifactId>hadoop-archives</artifactId>
  444. <version>${hadoop.version}</version>
  445. </dependency>
  446. <dependency>
  447. <groupId>org.apache.hadoop</groupId>
  448. <artifactId>hadoop-archive-logs</artifactId>
  449. <version>${hadoop.version}</version>
  450. </dependency>
  451. <dependency>
  452. <groupId>org.apache.hadoop</groupId>
  453. <artifactId>hadoop-distcp</artifactId>
  454. <version>${hadoop.version}</version>
  455. </dependency>
  456. <dependency>
  457. <groupId>org.apache.hadoop</groupId>
  458. <artifactId>hadoop-distcp</artifactId>
  459. <version>${hadoop.version}</version>
  460. <type>test-jar</type>
  461. </dependency>
  462. <dependency>
  463. <groupId>org.apache.hadoop</groupId>
  464. <artifactId>hadoop-datajoin</artifactId>
  465. <version>${hadoop.version}</version>
  466. </dependency>
  467. <dependency>
  468. <groupId>org.apache.hadoop</groupId>
  469. <artifactId>hadoop-rumen</artifactId>
  470. <version>${hadoop.version}</version>
  471. </dependency>
  472. <dependency>
  473. <groupId>org.apache.hadoop</groupId>
  474. <artifactId>hadoop-extras</artifactId>
  475. <version>${hadoop.version}</version>
  476. </dependency>
  477. <dependency>
  478. <groupId>org.apache.hadoop</groupId>
  479. <artifactId>hadoop-client</artifactId>
  480. <version>${hadoop.version}</version>
  481. </dependency>
  482. <dependency>
  483. <groupId>org.apache.hadoop</groupId>
  484. <artifactId>hadoop-minicluster</artifactId>
  485. <version>${hadoop.version}</version>
  486. </dependency>
  487. <dependency>
  488. <groupId>org.apache.hadoop</groupId>
  489. <artifactId>hadoop-minikdc</artifactId>
  490. <version>${hadoop.version}</version>
  491. </dependency>
  492. <dependency>
  493. <groupId>org.apache.hadoop</groupId>
  494. <artifactId>hadoop-openstack</artifactId>
  495. <version>${hadoop.version}</version>
  496. </dependency>
  497. <dependency>
  498. <groupId>org.apache.hadoop</groupId>
  499. <artifactId>hadoop-azure</artifactId>
  500. <version>${hadoop.version}</version>
  501. </dependency>
  502. <dependency>
  503. <groupId>org.apache.hadoop</groupId>
  504. <artifactId>hadoop-azure-datalake</artifactId>
  505. <version>${hadoop.version}</version>
  506. </dependency>
  507. <dependency>
  508. <groupId>org.apache.hadoop</groupId>
  509. <artifactId>hadoop-aws</artifactId>
  510. <version>${hadoop.version}</version>
  511. </dependency>
  512. <dependency>
  513. <groupId>org.apache.hadoop</groupId>
  514. <artifactId>hadoop-aliyun</artifactId>
  515. <version>${hadoop.version}</version>
  516. </dependency>
  517. <dependency>
  518. <groupId>org.apache.hadoop</groupId>
  519. <artifactId>hadoop-kms</artifactId>
  520. <version>${hadoop.version}</version>
  521. </dependency>
  522. <dependency>
  523. <groupId>org.apache.hadoop</groupId>
  524. <artifactId>hadoop-kms</artifactId>
  525. <version>${hadoop.version}</version>
  526. <type>test-jar</type>
  527. </dependency>
  528. <dependency>
  529. <groupId>com.google.guava</groupId>
  530. <artifactId>guava</artifactId>
  531. <version>${guava.version}</version>
  532. </dependency>
  533. <dependency>
  534. <groupId>com.google.code.gson</groupId>
  535. <artifactId>gson</artifactId>
  536. <version>2.2.4</version>
  537. </dependency>
  538. <dependency>
  539. <groupId>commons-cli</groupId>
  540. <artifactId>commons-cli</artifactId>
  541. <version>1.2</version>
  542. </dependency>
  543. <dependency>
  544. <groupId>org.apache.commons</groupId>
  545. <artifactId>commons-math3</artifactId>
  546. <version>3.1.1</version>
  547. </dependency>
  548. <dependency>
  549. <groupId>org.apache.commons</groupId>
  550. <artifactId>commons-compress</artifactId>
  551. <version>1.18</version>
  552. </dependency>
  553. <dependency>
  554. <groupId>org.apache.commons</groupId>
  555. <artifactId>commons-csv</artifactId>
  556. <version>1.0</version>
  557. </dependency>
  558. <dependency>
  559. <groupId>org.apache.httpcomponents</groupId>
  560. <artifactId>httpclient</artifactId>
  561. <version>${httpclient.version}</version>
  562. </dependency>
  563. <dependency>
  564. <groupId>org.apache.httpcomponents</groupId>
  565. <artifactId>httpcore</artifactId>
  566. <version>${httpcore.version}</version>
  567. </dependency>
  568. <dependency>
  569. <groupId>commons-codec</groupId>
  570. <artifactId>commons-codec</artifactId>
  571. <version>1.11</version>
  572. </dependency>
  573. <dependency>
  574. <groupId>commons-net</groupId>
  575. <artifactId>commons-net</artifactId>
  576. <version>3.6</version>
  577. </dependency>
  578. <dependency>
  579. <groupId>javax.servlet</groupId>
  580. <artifactId>javax.servlet-api</artifactId>
  581. <version>3.1.0</version>
  582. </dependency>
  583. <dependency>
  584. <groupId>javax.ws.rs</groupId>
  585. <artifactId>jsr311-api</artifactId>
  586. <version>1.1.1</version>
  587. </dependency>
  588. <dependency>
  589. <groupId>org.eclipse.jetty</groupId>
  590. <artifactId>jetty-server</artifactId>
  591. <version>${jetty.version}</version>
  592. <exclusions>
  593. <exclusion>
  594. <groupId>org.eclipse.jetty</groupId>
  595. <artifactId>javax.servlet-api</artifactId>
  596. </exclusion>
  597. </exclusions>
  598. </dependency>
  599. <dependency>
  600. <groupId>org.eclipse.jetty</groupId>
  601. <artifactId>jetty-util</artifactId>
  602. <version>${jetty.version}</version>
  603. </dependency>
  604. <dependency>
  605. <groupId>org.eclipse.jetty</groupId>
  606. <artifactId>jetty-servlet</artifactId>
  607. <version>${jetty.version}</version>
  608. </dependency>
  609. <dependency>
  610. <groupId>org.eclipse.jetty</groupId>
  611. <artifactId>jetty-webapp</artifactId>
  612. <version>${jetty.version}</version>
  613. </dependency>
  614. <dependency>
  615. <groupId>org.eclipse.jetty</groupId>
  616. <artifactId>jetty-util-ajax</artifactId>
  617. <version>${jetty.version}</version>
  618. </dependency>
  619. <dependency>
  620. <groupId>org.eclipse.jetty.websocket</groupId>
  621. <artifactId>javax-websocket-server-impl</artifactId>
  622. <version>${jetty.version}</version>
  623. <exclusions>
  624. <exclusion>
  625. <groupId>org.ow2.asm</groupId>
  626. <artifactId>asm</artifactId>
  627. </exclusion>
  628. <exclusion>
  629. <groupId>org.eclipse.jetty</groupId>
  630. <artifactId>jetty-webapp</artifactId>
  631. </exclusion>
  632. </exclusions>
  633. </dependency>
  634. <dependency>
  635. <groupId>org.eclipse.jetty.websocket</groupId>
  636. <artifactId>websocket-client</artifactId>
  637. <version>${jetty.version}</version>
  638. </dependency>
  639. <dependency>
  640. <groupId>javax.servlet.jsp</groupId>
  641. <artifactId>jsp-api</artifactId>
  642. <version>2.1</version>
  643. </dependency>
  644. <dependency>
  645. <groupId>org.glassfish</groupId>
  646. <artifactId>javax.servlet</artifactId>
  647. <version>3.1</version>
  648. </dependency>
  649. <dependency>
  650. <groupId>org.codehaus.plexus</groupId>
  651. <artifactId>plexus-utils</artifactId>
  652. <version>3.1.0</version>
  653. </dependency>
  654. <dependency>
  655. <groupId>org.codehaus.plexus</groupId>
  656. <artifactId>plexus-component-annotations</artifactId>
  657. <version>1.5.5</version>
  658. </dependency>
  659. <dependency>
  660. <groupId>org.ow2.asm</groupId>
  661. <artifactId>asm</artifactId>
  662. <version>5.0.4</version>
  663. </dependency>
  664. <dependency>
  665. <groupId>org.ojalgo</groupId>
  666. <artifactId>ojalgo</artifactId>
  667. <version>43.0</version>
  668. </dependency>
  669. <dependency>
  670. <groupId>com.sun.jersey</groupId>
  671. <artifactId>jersey-core</artifactId>
  672. <version>${jersey.version}</version>
  673. </dependency>
  674. <dependency>
  675. <groupId>com.sun.jersey</groupId>
  676. <artifactId>jersey-servlet</artifactId>
  677. <version>${jersey.version}</version>
  678. </dependency>
  679. <dependency>
  680. <groupId>com.sun.jersey</groupId>
  681. <artifactId>jersey-json</artifactId>
  682. <version>${jersey.version}</version>
  683. <exclusions>
  684. <exclusion>
  685. <groupId>stax</groupId>
  686. <artifactId>stax-api</artifactId>
  687. </exclusion>
  688. </exclusions>
  689. </dependency>
  690. <dependency>
  691. <groupId>com.sun.jersey</groupId>
  692. <artifactId>jersey-server</artifactId>
  693. <version>${jersey.version}</version>
  694. </dependency>
  695. <dependency>
  696. <groupId>com.google.inject</groupId>
  697. <artifactId>guice</artifactId>
  698. <version>${guice.version}</version>
  699. </dependency>
  700. <dependency>
  701. <groupId>cglib</groupId>
  702. <artifactId>cglib</artifactId>
  703. <version>3.2.0</version>
  704. </dependency>
  705. <dependency>
  706. <groupId>com.google.inject.extensions</groupId>
  707. <artifactId>guice-servlet</artifactId>
  708. <version>${guice.version}</version>
  709. </dependency>
  710. <dependency>
  711. <groupId>com.sun.jersey.contribs</groupId>
  712. <artifactId>jersey-guice</artifactId>
  713. <version>${jersey.version}</version>
  714. </dependency>
  715. <dependency>
  716. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  717. <artifactId>jersey-test-framework-core</artifactId>
  718. <version>${jersey.version}</version>
  719. <scope>test</scope>
  720. <exclusions>
  721. <exclusion>
  722. <groupId>javax.servlet</groupId>
  723. <artifactId>javax.servlet-api</artifactId>
  724. </exclusion>
  725. </exclusions>
  726. </dependency>
  727. <dependency>
  728. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  729. <artifactId>jersey-test-framework-grizzly2</artifactId>
  730. <version>${jersey.version}</version>
  731. <exclusions>
  732. <exclusion>
  733. <groupId>javax.servlet</groupId>
  734. <artifactId>javax.servlet-api</artifactId>
  735. </exclusion>
  736. </exclusions>
  737. </dependency>
  738. <dependency>
  739. <groupId>io.netty</groupId>
  740. <artifactId>netty</artifactId>
  741. <version>3.10.6.Final</version>
  742. </dependency>
  743. <dependency>
  744. <groupId>io.netty</groupId>
  745. <artifactId>netty-all</artifactId>
  746. <version>4.0.52.Final</version>
  747. </dependency>
  748. <dependency>
  749. <groupId>commons-io</groupId>
  750. <artifactId>commons-io</artifactId>
  751. <version>2.5</version>
  752. </dependency>
  753. <dependency>
  754. <groupId>org.eclipse.jetty</groupId>
  755. <artifactId>jetty-servlet-tester</artifactId>
  756. <version>${jetty.version}</version>
  757. </dependency>
  758. <dependency>
  759. <groupId>commons-logging</groupId>
  760. <artifactId>commons-logging</artifactId>
  761. <version>1.1.3</version>
  762. <exclusions>
  763. <exclusion>
  764. <groupId>avalon-framework</groupId>
  765. <artifactId>avalon-framework</artifactId>
  766. </exclusion>
  767. <exclusion>
  768. <groupId>logkit</groupId>
  769. <artifactId>logkit</artifactId>
  770. </exclusion>
  771. <exclusion>
  772. <groupId>javax.servlet</groupId>
  773. <artifactId>javax.servlet-api</artifactId>
  774. </exclusion>
  775. </exclusions>
  776. </dependency>
  777. <dependency>
  778. <groupId>commons-logging</groupId>
  779. <artifactId>commons-logging-api</artifactId>
  780. <version>1.1</version>
  781. </dependency>
  782. <dependency>
  783. <groupId>log4j</groupId>
  784. <artifactId>log4j</artifactId>
  785. <version>1.2.17</version>
  786. <exclusions>
  787. <exclusion>
  788. <groupId>com.sun.jdmk</groupId>
  789. <artifactId>jmxtools</artifactId>
  790. </exclusion>
  791. <exclusion>
  792. <groupId>com.sun.jmx</groupId>
  793. <artifactId>jmxri</artifactId>
  794. </exclusion>
  795. <exclusion>
  796. <groupId>javax.mail</groupId>
  797. <artifactId>mail</artifactId>
  798. </exclusion>
  799. <exclusion>
  800. <groupId>javax.jms</groupId>
  801. <artifactId>jmx</artifactId>
  802. </exclusion>
  803. <exclusion>
  804. <groupId>javax.jms</groupId>
  805. <artifactId>jms</artifactId>
  806. </exclusion>
  807. </exclusions>
  808. </dependency>
  809. <dependency>
  810. <groupId>com.amazonaws</groupId>
  811. <artifactId>aws-java-sdk-bundle</artifactId>
  812. <version>${aws-java-sdk.version}</version>
  813. <exclusions>
  814. <exclusion>
  815. <groupId>io.netty</groupId>
  816. <artifactId>*</artifactId>
  817. </exclusion>
  818. </exclusions>
  819. </dependency>
  820. <dependency>
  821. <groupId>org.apache.mina</groupId>
  822. <artifactId>mina-core</artifactId>
  823. <version>2.0.16</version>
  824. </dependency>
  825. <dependency>
  826. <groupId>org.apache.sshd</groupId>
  827. <artifactId>sshd-core</artifactId>
  828. <version>1.6.0</version>
  829. </dependency>
  830. <dependency>
  831. <groupId>org.apache.ftpserver</groupId>
  832. <artifactId>ftplet-api</artifactId>
  833. <version>1.0.0</version>
  834. </dependency>
  835. <dependency>
  836. <groupId>org.apache.ftpserver</groupId>
  837. <artifactId>ftpserver-core</artifactId>
  838. <version>1.0.0</version>
  839. </dependency>
  840. <dependency>
  841. <groupId>org.apache.ftpserver</groupId>
  842. <artifactId>ftpserver-deprecated</artifactId>
  843. <version>1.0.0-M2</version>
  844. </dependency>
  845. <dependency>
  846. <groupId>org.junit.jupiter</groupId>
  847. <artifactId>junit-jupiter-api</artifactId>
  848. <version>${junit.jupiter.version}</version>
  849. <scope>test</scope>
  850. </dependency>
  851. <dependency>
  852. <groupId>junit</groupId>
  853. <artifactId>junit</artifactId>
  854. <version>${junit.version}</version>
  855. <scope>test</scope>
  856. </dependency>
  857. <dependency>
  858. <groupId>org.junit.jupiter</groupId>
  859. <artifactId>junit-jupiter-engine</artifactId>
  860. <version>${junit.jupiter.version}</version>
  861. <scope>test</scope>
  862. </dependency>
  863. <dependency>
  864. <groupId>org.junit.vintage</groupId>
  865. <artifactId>junit-vintage-engine</artifactId>
  866. <version>${junit.vintage.version}</version>
  867. <scope>test</scope>
  868. </dependency>
  869. <!-- Only required to run tests in an IDE that bundles an older version -->
  870. <dependency>
  871. <groupId>org.junit.platform</groupId>
  872. <artifactId>junit-platform-launcher</artifactId>
  873. <version>${junit.platform.version}</version>
  874. <scope>test</scope>
  875. </dependency>
  876. <dependency>
  877. <groupId>com.github.stefanbirkner</groupId>
  878. <artifactId>system-rules</artifactId>
  879. <version>1.18.0</version>
  880. </dependency>
  881. <dependency>
  882. <groupId>commons-collections</groupId>
  883. <artifactId>commons-collections</artifactId>
  884. <version>3.2.2</version>
  885. </dependency>
  886. <dependency>
  887. <groupId>commons-beanutils</groupId>
  888. <artifactId>commons-beanutils</artifactId>
  889. <version>1.9.3</version>
  890. </dependency>
  891. <dependency>
  892. <groupId>org.apache.commons</groupId>
  893. <artifactId>commons-configuration2</artifactId>
  894. <version>2.1.1</version>
  895. <exclusions>
  896. <exclusion>
  897. <groupId>org.apache.commons</groupId>
  898. <artifactId>commons-lang3</artifactId>
  899. </exclusion>
  900. </exclusions>
  901. </dependency>
  902. <dependency>
  903. <groupId>org.apache.commons</groupId>
  904. <artifactId>commons-lang3</artifactId>
  905. <version>3.7</version>
  906. </dependency>
  907. <dependency>
  908. <groupId>org.apache.commons</groupId>
  909. <artifactId>commons-text</artifactId>
  910. <version>1.4</version>
  911. </dependency>
  912. <dependency>
  913. <groupId>org.slf4j</groupId>
  914. <artifactId>slf4j-api</artifactId>
  915. <version>${slf4j.version}</version>
  916. </dependency>
  917. <dependency>
  918. <groupId>org.slf4j</groupId>
  919. <artifactId>slf4j-log4j12</artifactId>
  920. <version>${slf4j.version}</version>
  921. </dependency>
  922. <dependency>
  923. <groupId>org.slf4j</groupId>
  924. <artifactId>jul-to-slf4j</artifactId>
  925. <version>${slf4j.version}</version>
  926. </dependency>
  927. <dependency>
  928. <groupId>org.eclipse.jdt</groupId>
  929. <artifactId>core</artifactId>
  930. <version>3.1.1</version>
  931. </dependency>
  932. <dependency>
  933. <groupId>org.codehaus.woodstox</groupId>
  934. <artifactId>stax2-api</artifactId>
  935. <version>3.1.4</version>
  936. </dependency>
  937. <dependency>
  938. <groupId>com.fasterxml.woodstox</groupId>
  939. <artifactId>woodstox-core</artifactId>
  940. <version>5.0.3</version>
  941. </dependency>
  942. <dependency>
  943. <groupId>org.codehaus.jackson</groupId>
  944. <artifactId>jackson-mapper-asl</artifactId>
  945. <version>${jackson.version}</version>
  946. </dependency>
  947. <dependency>
  948. <groupId>org.codehaus.jackson</groupId>
  949. <artifactId>jackson-core-asl</artifactId>
  950. <version>${jackson.version}</version>
  951. </dependency>
  952. <dependency>
  953. <groupId>org.codehaus.jackson</groupId>
  954. <artifactId>jackson-jaxrs</artifactId>
  955. <version>${jackson.version}</version>
  956. </dependency>
  957. <dependency>
  958. <groupId>org.codehaus.jackson</groupId>
  959. <artifactId>jackson-xc</artifactId>
  960. <version>${jackson.version}</version>
  961. </dependency>
  962. <dependency>
  963. <groupId>com.fasterxml.jackson.core</groupId>
  964. <artifactId>jackson-core</artifactId>
  965. <version>${jackson2.version}</version>
  966. </dependency>
  967. <dependency>
  968. <groupId>com.fasterxml.jackson.core</groupId>
  969. <artifactId>jackson-databind</artifactId>
  970. <version>${jackson2.version}</version>
  971. </dependency>
  972. <dependency>
  973. <groupId>com.fasterxml.jackson.core</groupId>
  974. <artifactId>jackson-annotations</artifactId>
  975. <version>${jackson2.version}</version>
  976. </dependency>
  977. <dependency>
  978. <groupId>com.fasterxml.jackson.module</groupId>
  979. <artifactId>jackson-module-jaxb-annotations</artifactId>
  980. <version>${jackson2.version}</version>
  981. </dependency>
  982. <dependency>
  983. <groupId>com.fasterxml.jackson.dataformat</groupId>
  984. <artifactId>jackson-dataformat-cbor</artifactId>
  985. <version>${jackson2.version}</version>
  986. </dependency>
  987. <dependency>
  988. <groupId>org.mockito</groupId>
  989. <artifactId>mockito-all</artifactId>
  990. <version>1.8.5</version>
  991. </dependency>
  992. <dependency>
  993. <groupId>org.objenesis</groupId>
  994. <artifactId>objenesis</artifactId>
  995. <version>1.0</version>
  996. </dependency>
  997. <dependency>
  998. <groupId>org.mock-server</groupId>
  999. <artifactId>mockserver-netty</artifactId>
  1000. <version>3.9.2</version>
  1001. <exclusions>
  1002. <exclusion>
  1003. <groupId>javax.servlet</groupId>
  1004. <artifactId>javax.servlet-api</artifactId>
  1005. </exclusion>
  1006. </exclusions>
  1007. </dependency>
  1008. <dependency>
  1009. <groupId>org.apache.avro</groupId>
  1010. <artifactId>avro</artifactId>
  1011. <version>${avro.version}</version>
  1012. </dependency>
  1013. <dependency>
  1014. <groupId>net.sf.kosmosfs</groupId>
  1015. <artifactId>kfs</artifactId>
  1016. <version>0.3</version>
  1017. </dependency>
  1018. <dependency>
  1019. <groupId>org.apache.ant</groupId>
  1020. <artifactId>ant</artifactId>
  1021. <version>1.8.1</version>
  1022. </dependency>
  1023. <dependency>
  1024. <groupId>com.google.re2j</groupId>
  1025. <artifactId>re2j</artifactId>
  1026. <version>${re2j.version}</version>
  1027. </dependency>
  1028. <dependency>
  1029. <groupId>com.google.protobuf</groupId>
  1030. <artifactId>protobuf-java</artifactId>
  1031. <version>${protobuf.version}</version>
  1032. </dependency>
  1033. <dependency>
  1034. <groupId>commons-daemon</groupId>
  1035. <artifactId>commons-daemon</artifactId>
  1036. <version>${commons-daemon.version}</version>
  1037. </dependency>
  1038. <dependency>
  1039. <groupId>com.jcraft</groupId>
  1040. <artifactId>jsch</artifactId>
  1041. <version>0.1.54</version>
  1042. </dependency>
  1043. <dependency>
  1044. <groupId>org.apache.htrace</groupId>
  1045. <artifactId>htrace-core</artifactId>
  1046. <version>3.1.0-incubating</version>
  1047. </dependency>
  1048. <dependency>
  1049. <groupId>org.apache.htrace</groupId>
  1050. <artifactId>htrace-core4</artifactId>
  1051. <version>4.1.0-incubating</version>
  1052. </dependency>
  1053. <dependency>
  1054. <groupId>org.jdom</groupId>
  1055. <artifactId>jdom</artifactId>
  1056. <version>1.1</version>
  1057. </dependency>
  1058. <dependency>
  1059. <groupId>com.googlecode.json-simple</groupId>
  1060. <artifactId>json-simple</artifactId>
  1061. <version>1.1.1</version>
  1062. </dependency>
  1063. <dependency>
  1064. <groupId>org.apache.zookeeper</groupId>
  1065. <artifactId>zookeeper</artifactId>
  1066. <version>${zookeeper.version}</version>
  1067. <exclusions>
  1068. <exclusion>
  1069. <!-- otherwise seems to drag in junit 3.8.1 via jline -->
  1070. <groupId>junit</groupId>
  1071. <artifactId>junit</artifactId>
  1072. </exclusion>
  1073. <exclusion>
  1074. <groupId>com.sun.jdmk</groupId>
  1075. <artifactId>jmxtools</artifactId>
  1076. </exclusion>
  1077. <exclusion>
  1078. <groupId>com.sun.jmx</groupId>
  1079. <artifactId>jmxri</artifactId>
  1080. </exclusion>
  1081. <exclusion>
  1082. <groupId>org.jboss.netty</groupId>
  1083. <artifactId>netty</artifactId>
  1084. </exclusion>
  1085. <exclusion>
  1086. <groupId>jline</groupId>
  1087. <artifactId>jline</artifactId>
  1088. </exclusion>
  1089. </exclusions>
  1090. </dependency>
  1091. <dependency>
  1092. <groupId>org.apache.zookeeper</groupId>
  1093. <artifactId>zookeeper</artifactId>
  1094. <version>${zookeeper.version}</version>
  1095. <type>test-jar</type>
  1096. <exclusions>
  1097. <exclusion>
  1098. <groupId>org.jboss.netty</groupId>
  1099. <artifactId>netty</artifactId>
  1100. </exclusion>
  1101. <exclusion>
  1102. <groupId>jline</groupId>
  1103. <artifactId>jline</artifactId>
  1104. </exclusion>
  1105. </exclusions>
  1106. </dependency>
  1107. <dependency>
  1108. <groupId>org.jline</groupId>
  1109. <artifactId>jline</artifactId>
  1110. <version>${jline.version}</version>
  1111. </dependency>
  1112. <dependency>
  1113. <groupId>org.hsqldb</groupId>
  1114. <artifactId>hsqldb</artifactId>
  1115. <version>${hsqldb.version}</version>
  1116. </dependency>
  1117. <dependency>
  1118. <groupId>io.dropwizard.metrics</groupId>
  1119. <artifactId>metrics-core</artifactId>
  1120. <version>3.2.4</version>
  1121. </dependency>
  1122. <dependency>
  1123. <groupId>org.apache.hadoop</groupId>
  1124. <artifactId>hadoop-sls</artifactId>
  1125. <version>${hadoop.version}</version>
  1126. </dependency>
  1127. <dependency>
  1128. <groupId>org.apache.hadoop</groupId>
  1129. <artifactId>hadoop-cloud-storage</artifactId>
  1130. <version>${hadoop.version}</version>
  1131. </dependency>
  1132. <dependency>
  1133. <groupId>com.google.code.findbugs</groupId>
  1134. <artifactId>jsr305</artifactId>
  1135. <version>${findbugs.version}</version>
  1136. </dependency>
  1137. <dependency>
  1138. <groupId>javax.xml.bind</groupId>
  1139. <artifactId>jaxb-api</artifactId>
  1140. <version>2.2.11</version>
  1141. </dependency>
  1142. <dependency>
  1143. <groupId>org.codehaus.jettison</groupId>
  1144. <artifactId>jettison</artifactId>
  1145. <version>1.1</version>
  1146. <exclusions>
  1147. <exclusion>
  1148. <groupId>stax</groupId>
  1149. <artifactId>stax-api</artifactId>
  1150. </exclusion>
  1151. </exclusions>
  1152. </dependency>
  1153. <dependency>
  1154. <groupId>com.sun.jersey</groupId>
  1155. <artifactId>jersey-client</artifactId>
  1156. <version>${jersey.version}</version>
  1157. </dependency>
  1158. <dependency>
  1159. <groupId>org.glassfish.grizzly</groupId>
  1160. <artifactId>grizzly-http-servlet</artifactId>
  1161. <version>2.2.21</version>
  1162. </dependency>
  1163. <dependency>
  1164. <groupId>org.glassfish.grizzly</groupId>
  1165. <artifactId>grizzly-http</artifactId>
  1166. <version>2.2.21</version>
  1167. </dependency>
  1168. <dependency>
  1169. <groupId>org.glassfish.grizzly</groupId>
  1170. <artifactId>grizzly-http-server</artifactId>
  1171. <version>2.2.21</version>
  1172. </dependency>
  1173. <dependency>
  1174. <groupId>org.fusesource.leveldbjni</groupId>
  1175. <artifactId>leveldbjni-all</artifactId>
  1176. <version>1.8</version>
  1177. </dependency>
  1178. <dependency>
  1179. <groupId>com.microsoft.azure</groupId>
  1180. <artifactId>azure-storage</artifactId>
  1181. <version>7.0.0</version>
  1182. </dependency>
  1183. <!--Wildfly openssl dependency is introduced by HADOOP-15669-->
  1184. <dependency>
  1185. <groupId>org.wildfly.openssl</groupId>
  1186. <artifactId>wildfly-openssl</artifactId>
  1187. <version>1.0.4.Final</version>
  1188. </dependency>
  1189. <dependency>
  1190. <groupId>org.threadly</groupId>
  1191. <artifactId>threadly</artifactId>
  1192. <version>4.9.0</version>
  1193. </dependency>
  1194. <dependency>
  1195. <groupId>com.aliyun.oss</groupId>
  1196. <artifactId>aliyun-sdk-oss</artifactId>
  1197. <version>3.0.0</version>
  1198. <exclusions>
  1199. <exclusion>
  1200. <groupId>org.apache.httpcomponents</groupId>
  1201. <artifactId>httpclient</artifactId>
  1202. </exclusion>
  1203. <exclusion>
  1204. <groupId>commons-beanutils</groupId>
  1205. <artifactId>commons-beanutils</artifactId>
  1206. </exclusion>
  1207. </exclusions>
  1208. </dependency>
  1209. <dependency>
  1210. <groupId>org.apache.curator</groupId>
  1211. <artifactId>curator-recipes</artifactId>
  1212. <version>${curator.version}</version>
  1213. </dependency>
  1214. <dependency>
  1215. <groupId>org.apache.curator</groupId>
  1216. <artifactId>curator-client</artifactId>
  1217. <version>${curator.version}</version>
  1218. </dependency>
  1219. <dependency>
  1220. <groupId>org.apache.curator</groupId>
  1221. <artifactId>curator-framework</artifactId>
  1222. <version>${curator.version}</version>
  1223. </dependency>
  1224. <dependency>
  1225. <groupId>org.apache.curator</groupId>
  1226. <artifactId>curator-test</artifactId>
  1227. <version>${curator.version}</version>
  1228. </dependency>
  1229. <dependency>
  1230. <groupId>org.bouncycastle</groupId>
  1231. <artifactId>bcprov-jdk15on</artifactId>
  1232. <version>${bouncycastle.version}</version>
  1233. </dependency>
  1234. <dependency>
  1235. <groupId>org.bouncycastle</groupId>
  1236. <artifactId>bcpkix-jdk15on</artifactId>
  1237. <version>${bouncycastle.version}</version>
  1238. </dependency>
  1239. <dependency>
  1240. <groupId>joda-time</groupId>
  1241. <artifactId>joda-time</artifactId>
  1242. <version>${joda-time.version}</version>
  1243. </dependency>
  1244. <dependency>
  1245. <groupId>com.nimbusds</groupId>
  1246. <artifactId>nimbus-jose-jwt</artifactId>
  1247. <version>4.41.1</version>
  1248. <scope>compile</scope>
  1249. <exclusions>
  1250. <exclusion>
  1251. <groupId>org.bouncycastle</groupId>
  1252. <artifactId>bcprov-jdk15on</artifactId>
  1253. </exclusion>
  1254. </exclusions>
  1255. </dependency>
  1256. <dependency>
  1257. <groupId>dnsjava</groupId>
  1258. <artifactId>dnsjava</artifactId>
  1259. <version>${dnsjava.version}</version>
  1260. </dependency>
  1261. <dependency>
  1262. <!-- HACK. Transitive dependency for nimbus-jose-jwt. Needed for
  1263. packaging. Please re-check this version when updating
  1264. nimbus-jose-jwt. Please read HADOOP-14903 for more details.
  1265. -->
  1266. <groupId>net.minidev</groupId>
  1267. <artifactId>json-smart</artifactId>
  1268. <version>2.3</version>
  1269. </dependency>
  1270. <dependency>
  1271. <groupId>org.skyscreamer</groupId>
  1272. <artifactId>jsonassert</artifactId>
  1273. <version>1.3.0</version>
  1274. </dependency>
  1275. <dependency>
  1276. <groupId>org.apache.hbase</groupId>
  1277. <artifactId>hbase-common</artifactId>
  1278. <version>${hbase.version}</version>
  1279. <exclusions>
  1280. <exclusion>
  1281. <artifactId>jdk.tools</artifactId>
  1282. <groupId>jdk.tools</groupId>
  1283. </exclusion>
  1284. </exclusions>
  1285. </dependency>
  1286. <dependency>
  1287. <groupId>org.apache.hbase</groupId>
  1288. <artifactId>hbase-common</artifactId>
  1289. <version>${hbase.version}</version>
  1290. <scope>test</scope>
  1291. <classifier>tests</classifier>
  1292. </dependency>
  1293. <dependency>
  1294. <groupId>org.apache.hbase</groupId>
  1295. <artifactId>hbase-client</artifactId>
  1296. <version>${hbase.version}</version>
  1297. <exclusions>
  1298. <!-- exclude jdk.tools (1.7) as we're not managing it -->
  1299. <exclusion>
  1300. <groupId>jdk.tools</groupId>
  1301. <artifactId>jdk.tools</artifactId>
  1302. </exclusion>
  1303. </exclusions>
  1304. </dependency>
  1305. <dependency>
  1306. <groupId>org.apache.hbase</groupId>
  1307. <artifactId>hbase-server</artifactId>
  1308. <version>${hbase.version}</version>
  1309. </dependency>
  1310. <dependency>
  1311. <groupId>org.apache.hbase</groupId>
  1312. <artifactId>hbase-server</artifactId>
  1313. <version>${hbase.version}</version>
  1314. <scope>test</scope>
  1315. <classifier>tests</classifier>
  1316. </dependency>
  1317. <dependency>
  1318. <groupId>org.apache.hbase</groupId>
  1319. <artifactId>hbase-testing-util</artifactId>
  1320. <version>${hbase.version}</version>
  1321. <scope>test</scope>
  1322. <optional>true</optional>
  1323. <exclusions>
  1324. <exclusion>
  1325. <groupId>org.jruby</groupId>
  1326. <artifactId>jruby-complete</artifactId>
  1327. </exclusion>
  1328. <exclusion>
  1329. <groupId>org.apache.hadoop</groupId>
  1330. <artifactId>hadoop-hdfs</artifactId>
  1331. </exclusion>
  1332. <exclusion>
  1333. <groupId>org.apache.hadoop</groupId>
  1334. <artifactId>hadoop-minicluster</artifactId>
  1335. </exclusion>
  1336. <exclusion>
  1337. <artifactId>jdk.tools</artifactId>
  1338. <groupId>jdk.tools</groupId>
  1339. </exclusion>
  1340. </exclusions>
  1341. </dependency>
  1342. <dependency>
  1343. <groupId>org.apache.kerby</groupId>
  1344. <artifactId>kerb-simplekdc</artifactId>
  1345. <version>1.0.1</version>
  1346. </dependency>
  1347. <dependency>
  1348. <groupId>org.apache.geronimo.specs</groupId>
  1349. <artifactId>geronimo-jcache_1.0_spec</artifactId>
  1350. <version>${jcache.version}</version>
  1351. </dependency>
  1352. <dependency>
  1353. <groupId>org.ehcache</groupId>
  1354. <artifactId>ehcache</artifactId>
  1355. <version>${ehcache.version}</version>
  1356. </dependency>
  1357. <dependency>
  1358. <groupId>com.zaxxer</groupId>
  1359. <artifactId>HikariCP-java7</artifactId>
  1360. <version>${hikari.version}</version>
  1361. </dependency>
  1362. <dependency>
  1363. <groupId>com.microsoft.sqlserver</groupId>
  1364. <artifactId>mssql-jdbc</artifactId>
  1365. <version>${mssql.version}</version>
  1366. </dependency>
  1367. <dependency>
  1368. <groupId>io.swagger</groupId>
  1369. <artifactId>swagger-annotations</artifactId>
  1370. <version>${swagger-annotations-version}</version>
  1371. </dependency>
  1372. <dependency>
  1373. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  1374. <artifactId>jackson-jaxrs-json-provider</artifactId>
  1375. <version>${jackson2.version}</version>
  1376. </dependency>
  1377. <dependency>
  1378. <groupId>org.yaml</groupId>
  1379. <artifactId>snakeyaml</artifactId>
  1380. <version>${snakeyaml.version}</version>
  1381. </dependency>
  1382. <dependency>
  1383. <groupId>org.assertj</groupId>
  1384. <artifactId>assertj-core</artifactId>
  1385. <version>3.8.0</version>
  1386. <scope>test</scope>
  1387. </dependency>
  1388. <dependency>
  1389. <groupId>org.jruby.jcodings</groupId>
  1390. <artifactId>jcodings</artifactId>
  1391. <version>1.0.13</version>
  1392. </dependency>
  1393. <dependency>
  1394. <groupId>javax.activation</groupId>
  1395. <artifactId>javax.activation-api</artifactId>
  1396. <version>1.2.0</version>
  1397. </dependency>
  1398. <dependency>
  1399. <groupId>javax.annotation</groupId>
  1400. <artifactId>javax.annotation-api</artifactId>
  1401. <version>1.3.2</version>
  1402. </dependency>
  1403. </dependencies>
  1404. </dependencyManagement>
  1405. <build>
  1406. <pluginManagement>
  1407. <plugins>
  1408. <plugin>
  1409. <groupId>org.codehaus.mojo</groupId>
  1410. <artifactId>build-helper-maven-plugin</artifactId>
  1411. <version>${build-helper-maven-plugin.version}</version>
  1412. </plugin>
  1413. <!-- We include the configuration for license-maven-plugin to correct
  1414. maven-shade-plugin generated poms because it's always the same. We
  1415. can't simply configure the plugin because we must ensure execution
  1416. happens in the package phase after the shade plugin runs.
  1417. -->
  1418. <plugin>
  1419. <groupId>org.codehaus.mojo</groupId>
  1420. <artifactId>license-maven-plugin</artifactId>
  1421. <version>1.10</version>
  1422. <configuration>
  1423. <canUpdateCopyright>false</canUpdateCopyright>
  1424. <roots><root>${project.basedir}</root></roots>
  1425. </configuration>
  1426. <executions>
  1427. <execution>
  1428. <id>update-pom-license</id>
  1429. <goals>
  1430. <goal>update-file-header</goal>
  1431. </goals>
  1432. <phase>package</phase>
  1433. <configuration>
  1434. <licenseName>apache_v2</licenseName>
  1435. <includes>
  1436. <include>dependency-reduced-pom.xml</include>
  1437. </includes>
  1438. </configuration>
  1439. </execution>
  1440. </executions>
  1441. </plugin>
  1442. <plugin>
  1443. <artifactId>maven-clean-plugin</artifactId>
  1444. <version>${maven-clean-plugin.version}</version>
  1445. </plugin>
  1446. <plugin>
  1447. <groupId>org.apache.maven.plugins</groupId>
  1448. <artifactId>maven-compiler-plugin</artifactId>
  1449. <version>${maven-compiler-plugin.version}</version>
  1450. <configuration>
  1451. <source>${javac.version}</source>
  1452. <target>${javac.version}</target>
  1453. <useIncrementalCompilation>false</useIncrementalCompilation>
  1454. <!-- add flags to generate native headers -->
  1455. <compilerArgs combine.children="append">
  1456. <arg>-h</arg>
  1457. <arg>${project.build.directory}/native/javah/</arg>
  1458. </compilerArgs>
  1459. </configuration>
  1460. </plugin>
  1461. <plugin>
  1462. <groupId>org.apache.maven.plugins</groupId>
  1463. <artifactId>maven-shade-plugin</artifactId>
  1464. <version>${maven-shade-plugin.version}</version>
  1465. </plugin>
  1466. <plugin>
  1467. <groupId>org.apache.maven.plugins</groupId>
  1468. <artifactId>maven-surefire-plugin</artifactId>
  1469. <version>${maven-surefire-plugin.version}</version>
  1470. </plugin>
  1471. <plugin>
  1472. <groupId>org.apache.maven.plugins</groupId>
  1473. <artifactId>maven-failsafe-plugin</artifactId>
  1474. <version>${maven-failsafe-plugin.version}</version>
  1475. </plugin>
  1476. <plugin>
  1477. <groupId>org.apache.maven.plugins</groupId>
  1478. <artifactId>maven-install-plugin</artifactId>
  1479. <version>${maven-install-plugin.version}</version>
  1480. </plugin>
  1481. <plugin>
  1482. <groupId>org.apache.maven.plugins</groupId>
  1483. <artifactId>maven-jar-plugin</artifactId>
  1484. <version>${maven-jar-plugin.version}</version>
  1485. </plugin>
  1486. <plugin>
  1487. <groupId>org.apache.maven.plugins</groupId>
  1488. <artifactId>maven-javadoc-plugin</artifactId>
  1489. <version>${maven-javadoc-plugin.version}</version>
  1490. <configuration>
  1491. <additionalOptions>
  1492. <additionalOption>-Xmaxwarns 10000</additionalOption>
  1493. </additionalOptions>
  1494. </configuration>
  1495. </plugin>
  1496. <plugin>
  1497. <groupId>org.apache.maven.plugins</groupId>
  1498. <artifactId>maven-war-plugin</artifactId>
  1499. <version>${maven-war-plugin.version}</version>
  1500. </plugin>
  1501. <plugin>
  1502. <groupId>org.codehaus.mojo</groupId>
  1503. <artifactId>findbugs-maven-plugin</artifactId>
  1504. <version>${findbugs.version}</version>
  1505. <dependencies>
  1506. <dependency>
  1507. <groupId>com.github.spotbugs</groupId>
  1508. <artifactId>spotbugs</artifactId>
  1509. <version>${spotbugs.version}</version>
  1510. </dependency>
  1511. </dependencies>
  1512. </plugin>
  1513. <plugin>
  1514. <groupId>org.codehaus.mojo</groupId>
  1515. <artifactId>make-maven-plugin</artifactId>
  1516. <version>${make-maven-plugin.version}</version>
  1517. </plugin>
  1518. <plugin>
  1519. <groupId>org.apache.maven.plugins</groupId>
  1520. <artifactId>maven-source-plugin</artifactId>
  1521. <version>${maven-source-plugin.version}</version>
  1522. </plugin>
  1523. <plugin>
  1524. <groupId>org.apache.avro</groupId>
  1525. <artifactId>avro-maven-plugin</artifactId>
  1526. <version>${avro.version}</version>
  1527. </plugin>
  1528. <plugin>
  1529. <groupId>org.apache.maven.plugins</groupId>
  1530. <artifactId>maven-resources-plugin</artifactId>
  1531. <version>${maven-resources-plugin.version}</version>
  1532. </plugin>
  1533. <plugin>
  1534. <groupId>org.codehaus.mojo</groupId>
  1535. <artifactId>exec-maven-plugin</artifactId>
  1536. <version>${exec-maven-plugin.version}</version>
  1537. </plugin>
  1538. <plugin>
  1539. <groupId>org.apache.maven.plugins</groupId>
  1540. <artifactId>maven-pdf-plugin</artifactId>
  1541. <version>${maven-pdf-plugin.version}</version>
  1542. </plugin>
  1543. <plugin>
  1544. <groupId>org.apache.hadoop</groupId>
  1545. <artifactId>hadoop-maven-plugins</artifactId>
  1546. <version>${hadoop.version}</version>
  1547. </plugin>
  1548. </plugins>
  1549. </pluginManagement>
  1550. <plugins>
  1551. <plugin>
  1552. <artifactId>maven-clean-plugin</artifactId>
  1553. <configuration>
  1554. <filesets>
  1555. <fileset>
  1556. <directory>${project.basedir}</directory>
  1557. <includes>
  1558. <include>dependency-reduced-pom.xml</include>
  1559. </includes>
  1560. </fileset>
  1561. </filesets>
  1562. </configuration>
  1563. </plugin>
  1564. <plugin>
  1565. <groupId>org.codehaus.mojo</groupId>
  1566. <artifactId>findbugs-maven-plugin</artifactId>
  1567. </plugin>
  1568. <plugin>
  1569. <groupId>org.apache.maven.plugins</groupId>
  1570. <artifactId>maven-remote-resources-plugin</artifactId>
  1571. <version>${maven-remote-resources-plugin.version}</version>
  1572. <configuration>
  1573. <resourceBundles>
  1574. <resourceBundle>org.apache.hadoop:hadoop-build-tools:${hadoop.version}</resourceBundle>
  1575. </resourceBundles>
  1576. </configuration>
  1577. <dependencies>
  1578. <dependency>
  1579. <groupId>org.apache.hadoop</groupId>
  1580. <artifactId>hadoop-build-tools</artifactId>
  1581. <version>${hadoop.version}</version>
  1582. </dependency>
  1583. </dependencies>
  1584. <executions>
  1585. <execution>
  1586. <goals>
  1587. <goal>process</goal>
  1588. </goals>
  1589. </execution>
  1590. </executions>
  1591. </plugin>
  1592. <plugin>
  1593. <groupId>org.codehaus.mojo</groupId>
  1594. <artifactId>animal-sniffer-maven-plugin</artifactId>
  1595. <version>1.16</version>
  1596. <executions>
  1597. <execution>
  1598. <id>signature-check</id>
  1599. <phase>verify</phase>
  1600. <goals>
  1601. <goal>check</goal>
  1602. </goals>
  1603. </execution>
  1604. </executions>
  1605. <configuration>
  1606. <signature>
  1607. <groupId>org.codehaus.mojo.signature</groupId>
  1608. <artifactId>java18</artifactId>
  1609. <version>1.0</version>
  1610. </signature>
  1611. <ignores>
  1612. <ignore>sun.misc.*</ignore>
  1613. <ignore>sun.net.*</ignore>
  1614. <ignore>sun.nio.ch.*</ignore>
  1615. <ignore>com.sun.javadoc.*</ignore>
  1616. <ignore>com.sun.tools.*</ignore>
  1617. <ignore>java.lang.invoke.*</ignore>
  1618. </ignores>
  1619. </configuration>
  1620. </plugin>
  1621. <plugin>
  1622. <groupId>org.apache.maven.plugins</groupId>
  1623. <artifactId>maven-antrun-plugin</artifactId>
  1624. <executions>
  1625. <execution>
  1626. <id>create-testdirs</id>
  1627. <phase>validate</phase>
  1628. <goals>
  1629. <goal>run</goal>
  1630. </goals>
  1631. <configuration>
  1632. <target>
  1633. <mkdir dir="${test.build.dir}"/>
  1634. <mkdir dir="${test.build.data}"/>
  1635. </target>
  1636. </configuration>
  1637. </execution>
  1638. </executions>
  1639. </plugin>
  1640. <plugin>
  1641. <groupId>org.apache.maven.plugins</groupId>
  1642. <artifactId>maven-surefire-plugin</artifactId>
  1643. <configuration>
  1644. <reuseForks>false</reuseForks>
  1645. <forkedProcessTimeoutInSeconds>${surefire.fork.timeout}</forkedProcessTimeoutInSeconds>
  1646. <argLine>${maven-surefire-plugin.argLine}</argLine>
  1647. <environmentVariables>
  1648. <HADOOP_COMMON_HOME>${hadoop.common.build.dir}</HADOOP_COMMON_HOME>
  1649. <!-- HADOOP_HOME required for tests on Windows to find winutils -->
  1650. <HADOOP_HOME>${hadoop.common.build.dir}</HADOOP_HOME>
  1651. <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>
  1652. <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>
  1653. <MALLOC_ARENA_MAX>4</MALLOC_ARENA_MAX>
  1654. </environmentVariables>
  1655. <trimStackTrace>false</trimStackTrace>
  1656. <systemPropertyVariables>
  1657. <hadoop.log.dir>${project.build.directory}/log</hadoop.log.dir>
  1658. <hadoop.tmp.dir>${project.build.directory}/tmp</hadoop.tmp.dir>
  1659. <!-- TODO: all references in testcases should be updated to this default -->
  1660. <test.build.dir>${test.build.dir}</test.build.dir>
  1661. <test.build.data>${test.build.data}</test.build.data>
  1662. <test.build.webapps>${test.build.webapps}</test.build.webapps>
  1663. <test.cache.data>${test.cache.data}</test.cache.data>
  1664. <test.build.classes>${project.build.directory}/test-classes</test.build.classes>
  1665. <java.net.preferIPv4Stack>true</java.net.preferIPv4Stack>
  1666. <java.security.krb5.conf>${project.build.directory}/test-classes/krb5.conf</java.security.krb5.conf>
  1667. <java.security.egd>${java.security.egd}</java.security.egd>
  1668. <require.test.libhadoop>${require.test.libhadoop}</require.test.libhadoop>
  1669. </systemPropertyVariables>
  1670. <includes>
  1671. <include>**/Test*.java</include>
  1672. </includes>
  1673. <excludes>
  1674. <exclude>**/${test.exclude}.java</exclude>
  1675. <exclude>${test.exclude.pattern}</exclude>
  1676. <exclude>**/Test*$*.java</exclude>
  1677. </excludes>
  1678. </configuration>
  1679. </plugin>
  1680. <plugin>
  1681. <groupId>org.apache.maven.plugins</groupId>
  1682. <artifactId>maven-pdf-plugin</artifactId>
  1683. <configuration>
  1684. <outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
  1685. <includeReports>false</includeReports>
  1686. </configuration>
  1687. </plugin>
  1688. <plugin>
  1689. <groupId>org.apache.maven.plugins</groupId>
  1690. <artifactId>maven-enforcer-plugin</artifactId>
  1691. <executions>
  1692. <execution>
  1693. <id>depcheck</id>
  1694. <configuration>
  1695. <rules>
  1696. <DependencyConvergence>
  1697. <uniqueVersions>true</uniqueVersions>
  1698. </DependencyConvergence>
  1699. <bannedDependencies>
  1700. <excludes>
  1701. <exclude>cglib:cglib:</exclude>
  1702. <exclude>com.sun.jersey:*</exclude>
  1703. <exclude>com.sun.jersey.contribs:*</exclude>
  1704. <exclude>com.sun.jersey.jersey-test-framework:*</exclude>
  1705. <exclude>com.google.inject:guice</exclude>
  1706. <exclude>org.ow2.asm:asm</exclude>
  1707. </excludes>
  1708. <includes>
  1709. <!-- for JDK 8 support -->
  1710. <include>cglib:cglib:3.2.0</include>
  1711. <include>com.google.inject:guice:4.0</include>
  1712. <include>com.sun.jersey:jersey-core:1.19</include>
  1713. <include>com.sun.jersey:jersey-servlet:1.19</include>
  1714. <include>com.sun.jersey:jersey-json:1.19</include>
  1715. <include>com.sun.jersey:jersey-server:1.19</include>
  1716. <include>com.sun.jersey:jersey-client:1.19</include>
  1717. <include>com.sun.jersey:jersey-grizzly2:1.19</include>
  1718. <include>com.sun.jersey:jersey-grizzly2-servlet:1.19</include>
  1719. <include>com.sun.jersey.jersey-test-framework:jersey-test-framework-core:1.19</include>
  1720. <include>com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:1.19</include>
  1721. <include>com.sun.jersey.contribs:jersey-guice:1.19</include>
  1722. <include>org.ow2.asm:asm:5.0.0</include>
  1723. </includes>
  1724. </bannedDependencies>
  1725. </rules>
  1726. </configuration>
  1727. <goals>
  1728. <goal>enforce</goal>
  1729. </goals>
  1730. <phase>verify</phase>
  1731. </execution>
  1732. </executions>
  1733. </plugin>
  1734. </plugins>
  1735. </build>
  1736. <profiles>
  1737. <profile>
  1738. <id>os.linux</id>
  1739. <activation>
  1740. <os>
  1741. <family>!Mac</family>
  1742. </os>
  1743. </activation>
  1744. <properties>
  1745. <build.platform>${os.name}-${os.arch}-${sun.arch.data.model}</build.platform>
  1746. </properties>
  1747. </profile>
  1748. <profile>
  1749. <id>os.mac</id>
  1750. <activation>
  1751. <os>
  1752. <family>Mac</family>
  1753. </os>
  1754. </activation>
  1755. <properties>
  1756. <build.platform>Mac_OS_X-${sun.arch.data.model}</build.platform>
  1757. </properties>
  1758. </profile>
  1759. <profile>
  1760. <id>native-win</id>
  1761. <activation>
  1762. <os>
  1763. <family>Windows</family>
  1764. </os>
  1765. </activation>
  1766. <properties>
  1767. <!-- We must use this exact string for egd on Windows, because the -->
  1768. <!-- JVM will check for an exact string match on this. If found, it -->
  1769. <!-- will use a native entropy provider. This will not really -->
  1770. <!-- attempt to open a file at this path. -->
  1771. <java.security.egd>file:/dev/urandom</java.security.egd>
  1772. <bundle.snappy.in.bin>true</bundle.snappy.in.bin>
  1773. <bundle.zstd.in.bin>true</bundle.zstd.in.bin>
  1774. <bundle.openssl.in.bin>true</bundle.openssl.in.bin>
  1775. </properties>
  1776. <build>
  1777. <plugins>
  1778. <plugin>
  1779. <groupId>org.apache.maven.plugins</groupId>
  1780. <artifactId>maven-surefire-plugin</artifactId>
  1781. <configuration>
  1782. <environmentVariables>
  1783. <!-- Specify where to look for the native DLL on Windows -->
  1784. <PATH>${env.PATH};${hadoop.common.build.dir}/bin;${snappy.lib}</PATH>
  1785. <PATH>${env.PATH};${hadoop.common.build.dir}/bin;${zstd.lib}</PATH>
  1786. <PATH>${env.PATH};${hadoop.common.build.dir}/bin;${openssl.lib}</PATH>
  1787. <PATH>${env.PATH};${hadoop.common.build.dir}/bin;${isal.lib}</PATH>
  1788. </environmentVariables>
  1789. </configuration>
  1790. </plugin>
  1791. </plugins>
  1792. </build>
  1793. </profile>
  1794. <profile>
  1795. <id>test-patch</id>
  1796. <activation>
  1797. <activeByDefault>false</activeByDefault>
  1798. </activation>
  1799. <build>
  1800. <plugins>
  1801. <plugin>
  1802. <groupId>org.apache.maven.plugins</groupId>
  1803. <artifactId>maven-compiler-plugin</artifactId>
  1804. <configuration>
  1805. <fork>true</fork>
  1806. <source>${javac.version}</source>
  1807. <target>${javac.version}</target>
  1808. <compilerArguments>
  1809. <Xlint/>
  1810. <Xlint:-unchecked/>
  1811. <Xmaxwarns>9999</Xmaxwarns>
  1812. </compilerArguments>
  1813. </configuration>
  1814. </plugin>
  1815. </plugins>
  1816. </build>
  1817. </profile>
  1818. <profile>
  1819. <id>dist</id>
  1820. <build>
  1821. <plugins>
  1822. <plugin>
  1823. <groupId>org.apache.maven.plugins</groupId>
  1824. <artifactId>maven-javadoc-plugin</artifactId>
  1825. <executions>
  1826. <execution>
  1827. <!-- build javadoc jars per jar for publishing to maven -->
  1828. <id>module-javadocs</id>
  1829. <phase>package</phase>
  1830. <goals>
  1831. <goal>jar</goal>
  1832. </goals>
  1833. </execution>
  1834. </executions>
  1835. </plugin>
  1836. <plugin>
  1837. <groupId>org.apache.maven.plugins</groupId>
  1838. <artifactId>maven-source-plugin</artifactId>
  1839. <executions>
  1840. <execution>
  1841. <!-- builds source jars and attaches them to the project for publishing -->
  1842. <id>hadoop-java-sources</id>
  1843. <phase>package</phase>
  1844. <goals>
  1845. <goal>jar-no-fork</goal>
  1846. <goal>test-jar-no-fork</goal>
  1847. </goals>
  1848. </execution>
  1849. </executions>
  1850. </plugin>
  1851. <plugin>
  1852. <groupId>org.apache.maven.plugins</groupId>
  1853. <artifactId>maven-enforcer-plugin</artifactId>
  1854. <executions>
  1855. <execution>
  1856. <id>dist-enforce</id>
  1857. <phase>package</phase>
  1858. <goals>
  1859. <goal>enforce</goal>
  1860. </goals>
  1861. </execution>
  1862. </executions>
  1863. </plugin>
  1864. </plugins>
  1865. </build>
  1866. </profile>
  1867. <!-- The profile for building against HBase 1.2.x
  1868. This is the default.
  1869. -->
  1870. <profile>
  1871. <id>hbase1</id>
  1872. <activation>
  1873. <property>
  1874. <name>!hbase.profile</name>
  1875. </property>
  1876. </activation>
  1877. <properties>
  1878. <hbase.version>${hbase.one.version}</hbase.version>
  1879. <hbase-compatible-hadoop.version>2.5.1</hbase-compatible-hadoop.version>
  1880. <hbase-compatible-guava.version>12.0.1</hbase-compatible-guava.version>
  1881. <hbase-server-artifactid>hadoop-yarn-server-timelineservice-hbase-server-1</hbase-server-artifactid>
  1882. </properties>
  1883. <dependencyManagement>
  1884. <dependencies>
  1885. <dependency>
  1886. <groupId>org.apache.hadoop</groupId>
  1887. <artifactId>${hbase-server-artifactid}</artifactId>
  1888. <version>${hadoop.version}</version>
  1889. </dependency>
  1890. </dependencies>
  1891. </dependencyManagement>
  1892. </profile>
  1893. <!-- The profile for building against HBase 2.0.0.
  1894. Activate using: mvn -Dhbase.profile=2.0
  1895. -->
  1896. <profile>
  1897. <id>hbase2</id>
  1898. <activation>
  1899. <property>
  1900. <name>hbase.profile</name>
  1901. <value>2.0</value>
  1902. </property>
  1903. </activation>
  1904. <properties>
  1905. <hbase.version>${hbase.two.version}</hbase.version>
  1906. <hbase-compatible-hadoop.version>3.0.0</hbase-compatible-hadoop.version>
  1907. <hbase-compatible-guava.version>11.0.2</hbase-compatible-guava.version>
  1908. <hbase-server-artifactid>hadoop-yarn-server-timelineservice-hbase-server-2</hbase-server-artifactid>
  1909. </properties>
  1910. <dependencyManagement>
  1911. <dependencies>
  1912. <dependency>
  1913. <groupId>org.apache.hadoop</groupId>
  1914. <artifactId>${hbase-server-artifactid}</artifactId>
  1915. <version>${hadoop.version}</version>
  1916. </dependency>
  1917. </dependencies>
  1918. </dependencyManagement>
  1919. </profile>
  1920. <profile>
  1921. <!-- TODO: remove this profile to generate html5 docs when we stop supporting JDK8 -->
  1922. <id>javadoc-html-version</id>
  1923. <activation>
  1924. <jdk>[11,)</jdk>
  1925. </activation>
  1926. <build>
  1927. <plugins>
  1928. <plugin>
  1929. <groupId>org.apache.maven.plugins</groupId>
  1930. <artifactId>maven-javadoc-plugin</artifactId>
  1931. <configuration>
  1932. <additionalOptions>
  1933. <additionalOption>-html4</additionalOption>
  1934. </additionalOptions>
  1935. </configuration>
  1936. </plugin>
  1937. </plugins>
  1938. </build>
  1939. </profile>
  1940. </profiles>
  1941. <repositories>
  1942. </repositories>
  1943. </project>