pom.xml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>platform-b2c</artifactId>
  5. <packaging>war</packaging>
  6. <name>platform-b2c Maven Webapp</name>
  7. <url>http://maven.apache.org</url>
  8. <parent>
  9. <groupId>com.uas.platform</groupId>
  10. <artifactId>platform</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. </parent>
  13. <profiles>
  14. <profile>
  15. <!-- 开发环境 -->
  16. <id>dev</id>
  17. <properties>
  18. <profile>dev</profile>
  19. <!-- static plugin -->
  20. <static-path>static</static-path>
  21. </properties>
  22. <!-- 默认 -->
  23. <activation>
  24. <activeByDefault>true</activeByDefault>
  25. </activation>
  26. </profile>
  27. <profile>
  28. <!-- 测试环境 -->
  29. <id>test</id>
  30. <properties>
  31. <profile>test</profile>
  32. <!-- static plugin -->
  33. <static-path>static</static-path>
  34. </properties>
  35. </profile>
  36. <profile>
  37. <!-- 生产环境 -->
  38. <id>prod</id>
  39. <properties>
  40. <profile>prod</profile>
  41. <!-- static plugin -->
  42. <static-path>http://static.usoftmall.com</static-path>
  43. </properties>
  44. </profile>
  45. </profiles>
  46. <dependencies>
  47. <dependency>
  48. <groupId>javax.servlet</groupId>
  49. <artifactId>servlet-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>junit</groupId>
  53. <artifactId>junit</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>log4j</groupId>
  58. <artifactId>log4j</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.uas.platform</groupId>
  62. <artifactId>platform-core</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.uas.api</groupId>
  66. <artifactId>b2c-erp-api</artifactId>
  67. <version>0.0.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.uas.api</groupId>
  71. <artifactId>b2c-manage-api</artifactId>
  72. <version>0.0.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.caucho</groupId>
  76. <artifactId>hessian</artifactId>
  77. </dependency>
  78. <!-- spring -->
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-core</artifactId>
  82. <exclusions>
  83. <exclusion>
  84. <groupId>commons-logging</groupId>
  85. <artifactId>commons-logging</artifactId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-context</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework</groupId>
  95. <artifactId>spring-context-support</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework</groupId>
  99. <artifactId>spring-webmvc</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework</groupId>
  103. <artifactId>spring-jdbc</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-tx</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-aop</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework</groupId>
  115. <artifactId>spring-aspects</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework</groupId>
  119. <artifactId>spring-test</artifactId>
  120. <version>4.1.6.RELEASE</version>
  121. </dependency>
  122. <!-- jpa -->
  123. <dependency>
  124. <groupId>org.springframework.data</groupId>
  125. <artifactId>spring-data-jpa</artifactId>
  126. </dependency>
  127. <!-- mongodb spring -->
  128. <dependency>
  129. <groupId>org.springframework.data</groupId>
  130. <artifactId>spring-data-mongodb</artifactId>
  131. <version>1.5.2.RELEASE</version>
  132. </dependency>
  133. <!-- xstream -->
  134. <dependency>
  135. <groupId>com.thoughtworks.xstream</groupId>
  136. <artifactId>xstream</artifactId>
  137. <version>1.3.1</version>
  138. </dependency>
  139. <!-- fileupload -->
  140. <dependency>
  141. <groupId>commons-fileupload</groupId>
  142. <artifactId>commons-fileupload</artifactId>
  143. <version>1.3.1</version>
  144. </dependency>
  145. <!-- hibernate -->
  146. <dependency>
  147. <groupId>org.hibernate</groupId>
  148. <artifactId>hibernate-core</artifactId>
  149. <exclusions>
  150. <exclusion>
  151. <groupId>xml-apis</groupId>
  152. <artifactId>xml-apis</artifactId>
  153. </exclusion>
  154. </exclusions>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.hibernate</groupId>
  158. <artifactId>hibernate-entitymanager</artifactId>
  159. <exclusions>
  160. <exclusion>
  161. <groupId>cglib</groupId>
  162. <artifactId>cglib</artifactId>
  163. </exclusion>
  164. <exclusion>
  165. <groupId>dom4j</groupId>
  166. <artifactId>dom4j</artifactId>
  167. </exclusion>
  168. </exclusions>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.hibernate.javax.persistence</groupId>
  172. <artifactId>hibernate-jpa-2.1-api</artifactId>
  173. </dependency>
  174. <dependency>
  175. <groupId>commons-collections</groupId>
  176. <artifactId>commons-collections</artifactId>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.hibernate</groupId>
  180. <artifactId>hibernate-validator</artifactId>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.slf4j</groupId>
  184. <artifactId>slf4j-api</artifactId>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.slf4j</groupId>
  188. <artifactId>jcl-over-slf4j</artifactId>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.slf4j</groupId>
  192. <artifactId>slf4j-log4j12</artifactId>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.aspectj</groupId>
  196. <artifactId>aspectjrt</artifactId>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.aspectj</groupId>
  200. <artifactId>aspectjweaver</artifactId>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.commons</groupId>
  204. <artifactId>commons-lang3</artifactId>
  205. </dependency>
  206. <dependency>
  207. <groupId>javax.validation</groupId>
  208. <artifactId>validation-api</artifactId>
  209. </dependency>
  210. <dependency>
  211. <groupId>javax.transaction</groupId>
  212. <artifactId>jta</artifactId>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.hibernate</groupId>
  216. <artifactId>hibernate-ehcache</artifactId>
  217. </dependency>
  218. <!-- jdbc -->
  219. <dependency>
  220. <groupId>com.oracle</groupId>
  221. <artifactId>ojdbc6</artifactId>
  222. </dependency>
  223. <!-- mysql -->
  224. <dependency>
  225. <groupId>mysql</groupId>
  226. <artifactId>mysql-connector-java</artifactId>
  227. <version>5.1.21</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.springframework</groupId>
  231. <artifactId>spring-orm</artifactId>
  232. </dependency>
  233. <dependency>
  234. <groupId>commons-pool</groupId>
  235. <artifactId>commons-pool</artifactId>
  236. </dependency>
  237. <dependency>
  238. <groupId>commons-dbcp</groupId>
  239. <artifactId>commons-dbcp</artifactId>
  240. </dependency>
  241. <!-- redis -->
  242. <dependency>
  243. <groupId>redis.clients</groupId>
  244. <artifactId>jedis</artifactId>
  245. <version>2.7.3</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.springframework.data</groupId>
  249. <artifactId>spring-data-redis</artifactId>
  250. <version>1.6.0.RELEASE</version>
  251. </dependency>
  252. <!-- spring mobile -->
  253. <dependency>
  254. <groupId>org.springframework.mobile</groupId>
  255. <artifactId>spring-mobile-device</artifactId>
  256. </dependency>
  257. <!--json-lib -->
  258. <dependency>
  259. <groupId>net.sf.json-lib</groupId>
  260. <artifactId>json-lib</artifactId>
  261. <classifier>jdk15</classifier>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.codehaus.jackson</groupId>
  265. <artifactId>jackson-core-asl</artifactId>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.codehaus.jackson</groupId>
  269. <artifactId>jackson-mapper-asl</artifactId>
  270. </dependency>
  271. <dependency>
  272. <groupId>com.fasterxml.jackson.core</groupId>
  273. <artifactId>jackson-core</artifactId>
  274. </dependency>
  275. <dependency>
  276. <groupId>com.fasterxml.jackson.core</groupId>
  277. <artifactId>jackson-databind</artifactId>
  278. </dependency>
  279. <dependency>
  280. <groupId>com.fasterxml.jackson.core</groupId>
  281. <artifactId>jackson-annotations</artifactId>
  282. </dependency>
  283. <dependency>
  284. <groupId>com.alibaba</groupId>
  285. <artifactId>fastjson</artifactId>
  286. </dependency>
  287. <!-- velocity -->
  288. <dependency>
  289. <groupId>org.apache.velocity</groupId>
  290. <artifactId>velocity</artifactId>
  291. </dependency>
  292. <!-- mail -->
  293. <dependency>
  294. <groupId>javax.mail</groupId>
  295. <artifactId>mail</artifactId>
  296. </dependency>
  297. <!-- jxls -->
  298. <dependency>
  299. <groupId>net.sf.jxls</groupId>
  300. <artifactId>jxls-core</artifactId>
  301. <version>1.0.4</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>net.sf.jxls</groupId>
  305. <artifactId>jxls-reader</artifactId>
  306. <version>1.0.4</version>
  307. </dependency>
  308. <!-- poi -->
  309. <dependency>
  310. <groupId>org.apache.poi</groupId>
  311. <artifactId>poi</artifactId>
  312. <version>3.9</version>
  313. </dependency>
  314. <!-- BeeCloud支付集成SDK -->
  315. <dependency>
  316. <groupId>cn.beecloud</groupId>
  317. <artifactId>beecloud-java-sdk</artifactId>
  318. <version>3.1.0</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>jaxen</groupId>
  322. <artifactId>jaxen</artifactId>
  323. <version>1.1.6</version>
  324. <exclusions>
  325. <exclusion>
  326. <groupId>dom4j</groupId>
  327. <artifactId>dom4j</artifactId>
  328. </exclusion>
  329. <exclusion>
  330. <groupId>xml-apis</groupId>
  331. <artifactId>xml-apis</artifactId>
  332. </exclusion>
  333. <exclusion>
  334. <groupId>xerces</groupId>
  335. <artifactId>xmlParserAPIs</artifactId>
  336. </exclusion>
  337. <exclusion>
  338. <groupId>xerces</groupId>
  339. <artifactId>xercesImpl</artifactId>
  340. </exclusion>
  341. <exclusion>
  342. <groupId>xerces</groupId>
  343. <artifactId>xercesImpl</artifactId>
  344. </exclusion>
  345. <exclusion>
  346. <groupId>com.ibm.icu</groupId>
  347. <artifactId>icu4j</artifactId>
  348. </exclusion>
  349. </exclusions>
  350. </dependency>
  351. <!-- kafka消息中间件 -->
  352. <dependency>
  353. <groupId>org.springframework.kafka</groupId>
  354. <artifactId>spring-kafka</artifactId>
  355. <version>1.2.2.RELEASE</version>
  356. </dependency>
  357. <!-- service on dubbo -->
  358. <dependency>
  359. <groupId>com.uas.dfs</groupId>
  360. <artifactId>dfs-api</artifactId>
  361. </dependency>
  362. <!-- search -->
  363. <dependency>
  364. <groupId>com.uas.search</groupId>
  365. <artifactId>search-api</artifactId>
  366. </dependency>
  367. <dependency>
  368. <groupId>com.uas.message</groupId>
  369. <artifactId>message-mail-api</artifactId>
  370. </dependency>
  371. <dependency>
  372. <groupId>com.uas.message</groupId>
  373. <artifactId>message-sms-api</artifactId>
  374. </dependency>
  375. <dependency>
  376. <groupId>com.uas.account</groupId>
  377. <artifactId>account-common</artifactId>
  378. </dependency>
  379. <dependency>
  380. <groupId>net.sourceforge.pinyin4j</groupId>
  381. <artifactId>pinyin4j</artifactId>
  382. <version>1.1.0</version>
  383. </dependency>
  384. <!-- security -->
  385. <dependency>
  386. <groupId>org.springframework.security</groupId>
  387. <artifactId>spring-security-core</artifactId>
  388. </dependency>
  389. <dependency>
  390. <groupId>org.springframework.security</groupId>
  391. <artifactId>spring-security-config</artifactId>
  392. </dependency>
  393. <dependency>
  394. <groupId>org.springframework.security</groupId>
  395. <artifactId>spring-security-web</artifactId>
  396. </dependency>
  397. <!-- swagger-springmvc -->
  398. <dependency>
  399. <groupId>com.mangofactory</groupId>
  400. <artifactId>swagger-springmvc</artifactId>
  401. <version>1.0.2</version>
  402. </dependency>
  403. <dependency>
  404. <groupId>com.mangofactory</groupId>
  405. <artifactId>swagger-models</artifactId>
  406. <version>1.0.2</version>
  407. </dependency>
  408. <dependency>
  409. <groupId>com.wordnik</groupId>
  410. <artifactId>swagger-annotations</artifactId>
  411. <version>1.3.11</version>
  412. </dependency>
  413. <!-- swagger-springmvc dependencies -->
  414. <dependency>
  415. <groupId>com.google.guava</groupId>
  416. <artifactId>guava</artifactId>
  417. <version>15.0</version>
  418. </dependency>
  419. <dependency>
  420. <groupId>com.fasterxml</groupId>
  421. <artifactId>classmate</artifactId>
  422. <version>1.1.0</version>
  423. </dependency>
  424. </dependencies>
  425. <build>
  426. <finalName>platform-b2c</finalName>
  427. <!-- 受profile影响的目录 -->
  428. <resources>
  429. <resource>
  430. <directory>${basedir}/src/main/resources</directory>
  431. <filtering>true</filtering>
  432. <excludes>
  433. <exclude>**/*.xls</exclude>
  434. </excludes>
  435. </resource>
  436. <!-- xls文件不能filter处理,需区分出来 -->
  437. <resource>
  438. <directory>${basedir}/src/main/resources</directory>
  439. <filtering>false</filtering>
  440. <includes>
  441. <include>**/*.xls</include>
  442. </includes>
  443. </resource>
  444. </resources>
  445. <!-- 在maven生命周期validate阶段生成timestamp -->
  446. <plugins>
  447. <plugin>
  448. <groupId>org.codehaus.mojo</groupId>
  449. <artifactId>buildnumber-maven-plugin</artifactId>
  450. <version>1.3</version>
  451. <executions>
  452. <execution>
  453. <phase>validate</phase>
  454. <goals>
  455. <goal>create-timestamp</goal>
  456. </goals>
  457. </execution>
  458. </executions>
  459. <configuration>
  460. <format>{0,date,yyyy-MM-dd HH:mm:ss}</format>
  461. <items>
  462. <item>timestamp</item>
  463. </items>
  464. </configuration>
  465. </plugin>
  466. <plugin>
  467. <groupId>org.apache.maven.plugins</groupId>
  468. <artifactId>maven-compiler-plugin</artifactId>
  469. <configuration>
  470. <source>1.7</source>
  471. <target>1.7</target>
  472. </configuration>
  473. </plugin>
  474. <plugin>
  475. <groupId>com.samaxes.maven</groupId>
  476. <artifactId>minify-maven-plugin</artifactId>
  477. <version>1.7.4</version>
  478. <!-- 静态文件压缩 -->
  479. <executions>
  480. <execution>
  481. <id>default-minify</id>
  482. <phase>prepare-package</phase>
  483. <configuration>
  484. <charset>UTF-8</charset>
  485. <skipMerge>true</skipMerge>
  486. <closureLanguage>ECMASCRIPT5</closureLanguage>
  487. <closureAngularPass>true</closureAngularPass>
  488. <nosuffix>true</nosuffix>
  489. <webappTargetDir>${project.build.directory}/minify</webappTargetDir>
  490. <cssSourceDir>resources</cssSourceDir>
  491. <cssEngine>YUI</cssEngine>
  492. <jsSourceDir>resources</jsSourceDir>
  493. <jsEngine>YUI</jsEngine>
  494. <cssSourceIncludes>
  495. <cssSourceInclude>css/**/*.css</cssSourceInclude>
  496. <cssSourceInclude>data/**/*.json</cssSourceInclude>
  497. </cssSourceIncludes>
  498. <cssSourceExcludes>
  499. <cssSourceExclude>css/**/*.min.css</cssSourceExclude>
  500. </cssSourceExcludes>
  501. <jsSourceIncludes>
  502. <jsSourceInclude>js/**/*.js</jsSourceInclude>
  503. </jsSourceIncludes>
  504. <jsSourceExcludes>
  505. <jsSourceExclude>js/**/*.min.js</jsSourceExclude>
  506. </jsSourceExcludes>
  507. </configuration>
  508. <goals>
  509. <goal>minify</goal>
  510. </goals>
  511. </execution>
  512. </executions>
  513. </plugin>
  514. <plugin>
  515. <artifactId>maven-resources-plugin</artifactId>
  516. <executions>
  517. <execution>
  518. <id>copy-resources</id>
  519. <phase>prepare-package</phase>
  520. <goals>
  521. <goal>copy-resources</goal>
  522. </goals>
  523. <configuration>
  524. <outputDirectory>${project.build.directory}/minify</outputDirectory>
  525. <overwrite>false</overwrite>
  526. <resources>
  527. <resource>
  528. <directory>${basedir}/src/main/webapp</directory>
  529. </resource>
  530. </resources>
  531. </configuration>
  532. </execution>
  533. </executions>
  534. </plugin>
  535. <plugin>
  536. <groupId>com.uas.plugins</groupId>
  537. <artifactId>static-maven-plugin</artifactId>
  538. <version>0.0.2-SNAPSHOT</version>
  539. <!-- 静态资源分离 -->
  540. <executions>
  541. <execution>
  542. <id>default-static</id>
  543. <phase>prepare-package</phase>
  544. <configuration>
  545. <pathMatcher>static</pathMatcher>
  546. <staticUrl>${static-path}</staticUrl>
  547. <webappDir>${project.build.directory}/minify</webappDir>
  548. <sourceDir>/</sourceDir>
  549. <targetDir>${project.build.directory}/statics</targetDir>
  550. <staticDir>/</staticDir>
  551. <sourceIncludes>
  552. <sourceInclude>resources/js/**/*.js</sourceInclude>
  553. <sourceInclude>resources/data/**/*.json</sourceInclude>
  554. <sourceInclude>resources/view/**/*.html</sourceInclude>
  555. <sourceInclude>WEB-INF/views/**/*.html</sourceInclude>
  556. </sourceIncludes>
  557. <!-- http://static.ubtoc.com/css/index.css?_v=1450321871828 -->
  558. <versionSuffix>
  559. <suffix>?_v=${timestamp}</suffix>
  560. <exclude>*/require.js,*.min.js,*.min.css</exclude>
  561. </versionSuffix>
  562. </configuration>
  563. <goals>
  564. <goal>static</goal>
  565. </goals>
  566. </execution>
  567. </executions>
  568. </plugin>
  569. <plugin>
  570. <groupId>org.apache.maven.plugins</groupId>
  571. <artifactId>maven-war-plugin</artifactId>
  572. <version>2.4</version>
  573. <configuration>
  574. <webResources>
  575. <resource>
  576. <directory>${project.build.directory}/statics</directory>
  577. </resource>
  578. <resource>
  579. <directory>${project.build.directory}/minify</directory>
  580. </resource>
  581. </webResources>
  582. </configuration>
  583. </plugin>
  584. <plugin>
  585. <groupId>org.apache.tomcat.maven</groupId>
  586. <artifactId>tomcat7-maven-plugin</artifactId>
  587. <version>2.2</version>
  588. <configuration>
  589. <port>8080</port>
  590. <path>/platform-b2c</path>
  591. <uriEncoding>utf-8</uriEncoding>
  592. </configuration>
  593. </plugin>
  594. </plugins>
  595. <pluginManagement>
  596. <plugins>
  597. <plugin>
  598. <groupId>org.eclipse.m2e</groupId>
  599. <artifactId>lifecycle-mapping</artifactId>
  600. <version>1.0.0</version>
  601. <configuration>
  602. <lifecycleMappingMetadata>
  603. <pluginExecutions>
  604. <pluginExecution>
  605. <pluginExecutionFilter>
  606. <groupId>
  607. org.codehaus.mojo
  608. </groupId>
  609. <artifactId>
  610. buildnumber-maven-plugin
  611. </artifactId>
  612. <versionRange>
  613. [1.3,)
  614. </versionRange>
  615. <goals>
  616. <goal>
  617. create-timestamp
  618. </goal>
  619. </goals>
  620. </pluginExecutionFilter>
  621. <action>
  622. <ignore></ignore>
  623. </action>
  624. </pluginExecution>
  625. </pluginExecutions>
  626. </lifecycleMappingMetadata>
  627. </configuration>
  628. </plugin>
  629. </plugins>
  630. </pluginManagement>
  631. </build>
  632. <distributionManagement>
  633. <!-- 发布release仓库 -->
  634. <repository>
  635. <id>platform-release</id>
  636. <name>platform-release</name>
  637. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  638. </repository>
  639. <!-- 发布快照版本 -->
  640. <snapshotRepository>
  641. <id>platform-snapshots</id>
  642. <name>platform-snapshots</name>
  643. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  644. </snapshotRepository>
  645. </distributionManagement>
  646. </project>