pom.xml 94 KB

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