pom.xml 79 KB

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