pom.xml 85 KB

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