pom.xml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. <!--
  2. Copyright 2012 NGDATA
  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.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  14. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  15. <properties>
  16. <version.solr>6.3.0</version.solr>
  17. <version.guava>11.0.2</version.guava>
  18. <version.joda-time>1.6</version.joda-time>
  19. <version.slf4j>1.7.5</version.slf4j>
  20. <version.hbase>1.1.0</version.hbase>
  21. <version.hadoop>2.7.1</version.hadoop>
  22. <version.zookeeper>3.4.5</version.zookeeper>
  23. <version.jackson>1.9.13</version.jackson>
  24. <version.httpclient>4.3</version.httpclient>
  25. <version.kite>0.13.0</version.kite>
  26. <version.jersey>1.17</version.jersey>
  27. <version.surefire.plugin>2.19.1</version.surefire.plugin>
  28. <version.failsafe.plugin>${version.surefire.plugin}</version.failsafe.plugin>
  29. <!-- Tells maven plugins what file encoding to use -->
  30. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  31. </properties>
  32. <modelVersion>4.0.0</modelVersion>
  33. <groupId>com.ngdata</groupId>
  34. <artifactId>hbase-sep</artifactId>
  35. <packaging>pom</packaging>
  36. <version>1.6-SNAPSHOT</version>
  37. <name>HBase Side-Effect Processor (SEP)</name>
  38. <url>http://www.ngdata.com/</url>
  39. <!--<licenses>-->
  40. <!--<license>-->
  41. <!--<name>Apache 2</name>-->
  42. <!--<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>-->
  43. <!--<distribution>repo</distribution>-->
  44. <!--<comments>Copyright 2013 by NGDATA nv</comments>-->
  45. <!--</license>-->
  46. <!--</licenses>-->
  47. <scm>
  48. <connection>scm:git:git@github.com:NGDATA/hbase-indexer.git</connection>
  49. <url>scm:git:git@github.com:NGDATA/hbase-indexer.git</url>
  50. <developerConnection>scm:git:git@github.com:NGDATA/hbase-indexer.git</developerConnection>
  51. <tag>HEAD</tag>
  52. </scm>
  53. <modules>
  54. <module>hbase-sep-api</module>
  55. <module>hbase-sep-impl</module>
  56. <module>hbase-sep-start</module>
  57. <module>hbase-sep-tools</module>
  58. </modules>
  59. <dependencyManagement>
  60. <dependencies>
  61. <dependency>
  62. <groupId>com.ngdata</groupId>
  63. <artifactId>hbase-sep-api</artifactId>
  64. <version>1.6-SNAPSHOT</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.ngdata</groupId>
  68. <artifactId>hbase-sep-impl</artifactId>
  69. <version>1.6-SNAPSHOT</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.ngdata</groupId>
  73. <artifactId>hbase-sep-tools</artifactId>
  74. <version>1.6-SNAPSHOT</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.kitesdk</groupId>
  78. <artifactId>kite-morphlines-all</artifactId>
  79. <version>${version.kite}</version>
  80. <type>pom</type>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.zookeeper</groupId>
  84. <artifactId>zookeeper</artifactId>
  85. <version>${version.zookeeper}</version>
  86. <exclusions>
  87. <!-- We should be able to remove this in zk 3.5: https://issues.apache.org/jira/browse/ZOOKEEPER-721 -->
  88. <exclusion>
  89. <groupId>com.sun.jdmk</groupId>
  90. <artifactId>jmxtools</artifactId>
  91. </exclusion>
  92. <exclusion>
  93. <groupId>com.sun.jmx</groupId>
  94. <artifactId>jmxri</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>javax.jms</groupId>
  98. <artifactId>jms</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.yammer.metrics</groupId>
  104. <artifactId>metrics-core</artifactId>
  105. <version>2.2.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.yammer.metrics</groupId>
  109. <artifactId>metrics-ganglia</artifactId>
  110. <version>2.2.0</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.mockito</groupId>
  114. <artifactId>mockito-core</artifactId>
  115. <version>1.9.0</version>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>junit</groupId>
  120. <artifactId>junit</artifactId>
  121. <version>4.8.1</version>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.codehaus.jackson</groupId>
  126. <artifactId>jackson-core-asl</artifactId>
  127. <version>${version.jackson}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.codehaus.jackson</groupId>
  131. <artifactId>jackson-mapper-asl</artifactId>
  132. <version>${version.jackson}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.hadoop</groupId>
  136. <artifactId>hadoop-common</artifactId>
  137. <version>${version.hadoop}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.hadoop</groupId>
  141. <artifactId>hadoop-client</artifactId>
  142. <version>${version.hadoop}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.hadoop</groupId>
  146. <artifactId>hadoop-hdfs</artifactId>
  147. <version>${version.hadoop}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.hadoop</groupId>
  151. <artifactId>hadoop-auth</artifactId>
  152. <version>${version.hadoop}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.hadoop</groupId>
  156. <artifactId>hadoop-hdfs</artifactId>
  157. <version>${version.hadoop}</version>
  158. <type>test-jar</type>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.hadoop</groupId>
  163. <artifactId>hadoop-common</artifactId>
  164. <version>${version.hadoop}</version>
  165. <type>test-jar</type>
  166. <scope>test</scope>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.hadoop</groupId>
  170. <artifactId>hadoop-minicluster</artifactId>
  171. <version>${version.hadoop}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.apache.hadoop</groupId>
  175. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  176. <version>${version.hadoop}</version>
  177. <type>test-jar</type>
  178. <scope>test</scope>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.hbase</groupId>
  182. <artifactId>hbase</artifactId>
  183. <version>${version.hbase}</version>
  184. <exclusions>
  185. <exclusion>
  186. <groupId>stax</groupId>
  187. <artifactId>stax-api</artifactId>
  188. <!-- only necessary for Java < 6 -->
  189. </exclusion>
  190. </exclusions>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.apache.hbase</groupId>
  194. <artifactId>hbase-common</artifactId>
  195. <version>${version.hbase}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.hbase</groupId>
  199. <artifactId>hbase</artifactId>
  200. <type>test-jar</type>
  201. <scope>test</scope>
  202. <version>${version.hbase}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.apache.hbase</groupId>
  206. <artifactId>hbase-server</artifactId>
  207. <version>${version.hbase}</version>
  208. <exclusions>
  209. <exclusion>
  210. <groupId>org.apache.hadoop</groupId>
  211. <artifactId>hadoop-client</artifactId>
  212. </exclusion>
  213. </exclusions>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.apache.hbase</groupId>
  217. <artifactId>hbase-common</artifactId>
  218. <type>test-jar</type>
  219. <scope>test</scope>
  220. <version>${version.hbase}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.hbase</groupId>
  224. <artifactId>hbase-server</artifactId>
  225. <type>test-jar</type>
  226. <scope>test</scope>
  227. <version>${version.hbase}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.hbase</groupId>
  231. <artifactId>hbase-client</artifactId>
  232. <type>test-jar</type>
  233. <scope>test</scope>
  234. <version>${version.hbase}</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.apache.hbase</groupId>
  238. <artifactId>hbase-client</artifactId>
  239. <version>${version.hbase}</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.apache.hbase</groupId>
  243. <artifactId>hbase-hadoop2-compat</artifactId>
  244. <type>test-jar</type>
  245. <scope>test</scope>
  246. <version>${version.hbase}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.apache.hbase</groupId>
  250. <artifactId>hbase-hadoop-compat</artifactId>
  251. <type>test-jar</type>
  252. <scope>test</scope>
  253. <version>${version.hbase}</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.apache.hadoop</groupId>
  257. <artifactId>hadoop-yarn-server-tests</artifactId>
  258. <type>test-jar</type>
  259. <scope>test</scope>
  260. <version>${version.hadoop}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.hadoop</groupId>
  264. <artifactId>hadoop-mapreduce-client-hs</artifactId>
  265. <version>${version.hadoop}</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.hadoop</groupId>
  269. <artifactId>hadoop-mapreduce-client-core</artifactId>
  270. <version>${version.hadoop}</version>
  271. </dependency>
  272. <!-- Need to align version of httpclient and httpcore -->
  273. <dependency>
  274. <groupId>org.apache.httpcomponents</groupId>
  275. <artifactId>httpclient</artifactId>
  276. <version>${version.httpclient}</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.apache.httpcomponents</groupId>
  280. <artifactId>httpcore</artifactId>
  281. <version>${version.httpclient}</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>org.apache.httpcomponents</groupId>
  285. <artifactId>httpmime</artifactId>
  286. <version>${version.httpclient}</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>net.sf.jopt-simple</groupId>
  290. <artifactId>jopt-simple</artifactId>
  291. <version>4.4</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.slf4j</groupId>
  295. <artifactId>slf4j-log4j12</artifactId>
  296. <version>${version.slf4j}</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>org.slf4j</groupId>
  300. <artifactId>slf4j-api</artifactId>
  301. <version>${version.slf4j}</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.slf4j</groupId>
  305. <artifactId>jcl-over-slf4j</artifactId>
  306. <version>${version.slf4j}</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.slf4j</groupId>
  310. <artifactId>jul-to-slf4j</artifactId>
  311. <version>${version.slf4j}</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>com.sun.jersey</groupId>
  315. <artifactId>jersey-server</artifactId>
  316. <version>${version.jersey}</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>com.sun.jersey</groupId>
  320. <artifactId>jersey-servlet</artifactId>
  321. <version>${version.jersey}</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>com.sun.jersey</groupId>
  325. <artifactId>jersey-core</artifactId>
  326. <version>${version.jersey}</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>com.sun.jersey</groupId>
  330. <artifactId>jersey-json</artifactId>
  331. <version>${version.jersey}</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>com.sun.jersey</groupId>
  335. <artifactId>jersey-client</artifactId>
  336. <version>${version.jersey}</version>
  337. </dependency>
  338. <dependency>
  339. <groupId>com.sun.jersey.contribs</groupId>
  340. <artifactId>jersey-guice</artifactId>
  341. <version>${version.jersey}</version>
  342. </dependency>
  343. <dependency>
  344. <groupId>javax.ws.rs</groupId>
  345. <artifactId>jsr311-api</artifactId>
  346. <version>1.1.1</version>
  347. </dependency>
  348. <dependency>
  349. <groupId>joda-time</groupId>
  350. <artifactId>joda-time</artifactId>
  351. <version>${version.joda-time}</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>org.kohsuke</groupId>
  355. <artifactId>akuma</artifactId>
  356. <version>1.9</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>com.google.guava</groupId>
  360. <artifactId>guava</artifactId>
  361. <version>${version.guava}</version>
  362. </dependency>
  363. </dependencies>
  364. </dependencyManagement>
  365. <repositories>
  366. <repository>
  367. <id>default</id>
  368. <name>Maven Repository Switchboard</name>
  369. <layout>default</layout>
  370. <url>http://repo1.maven.org/maven2</url>
  371. <snapshots>
  372. <enabled>false</enabled>
  373. </snapshots>
  374. </repository>
  375. <repository>
  376. <id>cdh.repo.snapshots</id>
  377. <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
  378. <name>Cloudera Repository</name>
  379. <snapshots>
  380. <enabled>true</enabled>
  381. </snapshots>
  382. </repository>
  383. <repository>
  384. <id>ngdata.oss-releases</id>
  385. <name>NGDATA OSS Releases</name>
  386. <url>http://mvnrepo.ngdata.com/content/repositories/oss-releases</url>
  387. <snapshots>
  388. <enabled>false</enabled>
  389. </snapshots>
  390. </repository>
  391. </repositories>
  392. <pluginRepositories>
  393. <pluginRepository>
  394. <id>central</id>
  395. <name>Maven Plugin Repository</name>
  396. <url>http://repo1.maven.org/maven2/</url>
  397. <layout>default</layout>
  398. <snapshots>
  399. <enabled>false</enabled>
  400. </snapshots>
  401. <releases>
  402. <updatePolicy>never</updatePolicy>
  403. </releases>
  404. </pluginRepository>
  405. </pluginRepositories>
  406. <distributionManagement>
  407. <repository>
  408. <id>ngdata.oss-releases</id>
  409. <name>NGDATA OSS Releases</name>
  410. <url>http://mvnrepo.ngdata.com/content/repositories/oss-releases</url>
  411. </repository>
  412. <snapshotRepository>
  413. <id>ngdata.snapshots</id>
  414. <name>NGDATA Snapshots</name>
  415. <url>http://mvnrepo.ngdata.com/content/repositories/snapshots</url>
  416. </snapshotRepository>
  417. </distributionManagement>
  418. <build>
  419. <extensions>
  420. <extension>
  421. <groupId>org.apache.maven.wagon</groupId>
  422. <artifactId>wagon-ssh</artifactId>
  423. <version>2.0</version>
  424. </extension>
  425. </extensions>
  426. <pluginManagement>
  427. <plugins>
  428. <!--<plugin>-->
  429. <!--<groupId>org.apache.rat</groupId>-->
  430. <!--<artifactId>apache-rat-plugin</artifactId>-->
  431. <!--<version>0.8</version>-->
  432. <!--<configuration>-->
  433. <!--<excludes>-->
  434. <!--<exclude>**/.*</exclude>-->
  435. <!--<exclude>**/target/**</exclude>-->
  436. <!--<exclude>**/README.md</exclude>-->
  437. <!--<exclude>**/readme.txt</exclude>-->
  438. <!--<exclude>**/*log4j*.properties</exclude>-->
  439. <!--<exclude>.git/**</exclude>-->
  440. <!--<exclude>.gitignore</exclude>-->
  441. <!--<exclude>.repository/</exclude>-->
  442. <!--<exclude>.idea/**</exclude>-->
  443. <!--<exclude>**/*.iml</exclude>-->
  444. <!--<exclude>**/.settings/**</exclude>-->
  445. <!--<exclude>**/resources/*.txt</exclude>-->
  446. <!--<exclude>**/resources/**/*.txt</exclude>-->
  447. <!--<exclude>**/resources/**/*.xml</exclude>-->
  448. <!--<exclude>**/conf/*</exclude>-->
  449. <!--<exclude>**/src/it/resources/**</exclude>-->
  450. <!--<exclude>**/META-INF/services/**</exclude>-->
  451. <!--<exclude>**/ForkedAlphaNumericComparator.java</exclude>-->
  452. <!--&lt;!&ndash; MIT &ndash;&gt;-->
  453. <!--</excludes>-->
  454. <!--</configuration>-->
  455. <!--<executions>-->
  456. <!--<execution>-->
  457. <!--<id>rat-check</id>-->
  458. <!--<phase>test</phase>-->
  459. <!--<goals>-->
  460. <!--<goal>check</goal>-->
  461. <!--</goals>-->
  462. <!--</execution>-->
  463. <!--</executions>-->
  464. <!--</plugin>-->
  465. <plugin>
  466. <groupId>org.apache.maven.plugins</groupId>
  467. <artifactId>maven-javadoc-plugin</artifactId>
  468. <configuration>
  469. <!-- Disable java8 doclint -->
  470. <!--<additionalparam>-Xdoclint:none</additionalparam>-->
  471. <!-- Disable javadoc generation by default. We only want javadocs for public api jars
  472. to be published, otherwise customers have access to the javadoc of implementation
  473. classes, which clashes with the idea that the implementation should be obfuscated. -->
  474. <skip>true</skip>
  475. </configuration>
  476. </plugin>
  477. <plugin>
  478. <groupId>org.apache.maven.plugins</groupId>
  479. <artifactId>maven-source-plugin</artifactId>
  480. <version>2.1.2</version>
  481. <executions>
  482. <execution>
  483. <id>attach-sources</id>
  484. <phase>verify</phase>
  485. <goals>
  486. <goal>jar-no-fork</goal>
  487. </goals>
  488. </execution>
  489. <execution>
  490. <id>attach-sources-to-jar</id>
  491. <goals>
  492. <goal>jar</goal>
  493. </goals>
  494. </execution>
  495. </executions>
  496. </plugin>
  497. <plugin>
  498. <artifactId>maven-compiler-plugin</artifactId>
  499. <configuration>
  500. <source>1.7</source>
  501. <target>1.7</target>
  502. <encoding>UTF-8</encoding>
  503. </configuration>
  504. </plugin>
  505. <plugin>
  506. <groupId>org.apache.maven.plugins</groupId>
  507. <artifactId>maven-surefire-plugin</artifactId>
  508. <version>${version.surefire.plugin}</version>
  509. </plugin>
  510. <!-- We put slow-running tests into src/it and run them during the
  511. integration-test phase using the failsafe plugin. This way
  512. developers can run unit tests conveniently from the IDE or via
  513. "mvn package" from the command line without triggering time
  514. consuming integration tests. -->
  515. <plugin>
  516. <groupId>org.codehaus.mojo</groupId>
  517. <artifactId>build-helper-maven-plugin</artifactId>
  518. <version>1.7</version>
  519. <executions>
  520. <execution>
  521. <id>add-test-source</id>
  522. <phase>validate</phase>
  523. <goals>
  524. <goal>add-test-source</goal>
  525. </goals>
  526. <configuration>
  527. <sources>
  528. <source>${basedir}/src/it/java</source>
  529. </sources>
  530. </configuration>
  531. </execution>
  532. <execution>
  533. <id>add-test-resource</id>
  534. <phase>validate</phase>
  535. <goals>
  536. <goal>add-test-resource</goal>
  537. </goals>
  538. <configuration>
  539. <resources>
  540. <resource>
  541. <directory>${basedir}/src/it/resources</directory>
  542. </resource>
  543. </resources>
  544. </configuration>
  545. </execution>
  546. </executions>
  547. </plugin>
  548. <plugin>
  549. <groupId>org.apache.maven.plugins</groupId>
  550. <artifactId>maven-failsafe-plugin</artifactId>
  551. <version>${version.failsafe.plugin}</version>
  552. <configuration>
  553. <reuseForks>false</reuseForks>
  554. <argLine>-Xmx768m -XX:MaxPermSize=128M</argLine>
  555. <testSourceDirectory>${basedir}/src/it/java</testSourceDirectory>
  556. </configuration>
  557. <executions>
  558. <execution>
  559. <goals>
  560. <goal>integration-test</goal>
  561. <goal>verify</goal>
  562. </goals>
  563. </execution>
  564. </executions>
  565. </plugin>
  566. </plugins>
  567. </pluginManagement>
  568. <plugins>
  569. <plugin>
  570. <groupId>org.apache.rat</groupId>
  571. <artifactId>apache-rat-plugin</artifactId>
  572. </plugin>
  573. <plugin>
  574. <groupId>org.apache.maven.plugins</groupId>
  575. <artifactId>maven-source-plugin</artifactId>
  576. </plugin>
  577. <!--
  578. Deal with flaky mvn:release handling with newer versions
  579. of Git, see http://stackoverflow.com/questions/15166781/mvn-releaseprepare-not-committing-changes-to-pom-xml
  580. -->
  581. <plugin>
  582. <groupId>org.apache.maven.plugins</groupId>
  583. <artifactId>maven-release-plugin</artifactId>
  584. <version>2.4.2</version>
  585. <dependencies>
  586. <dependency>
  587. <groupId>org.apache.maven.scm</groupId>
  588. <artifactId>maven-scm-provider-gitexe</artifactId>
  589. <version>1.8.1</version>
  590. </dependency>
  591. </dependencies>
  592. </plugin>
  593. </plugins>
  594. </build>
  595. </project>