pom.xml 93 KB

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