pom.xml 92 KB

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