pom.xml 87 KB

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