pom.xml 18 KB

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