pom.xml 73 KB

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