pom.xml 86 KB

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