pom.xml 18 KB

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