pom.xml 86 KB

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