pom.xml 93 KB

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