pom.xml 96 KB

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