pom.xml 91 KB

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