pom.xml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  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. <dependency>
  224. <groupId>org.springframework</groupId>
  225. <artifactId>spring-orm</artifactId>
  226. </dependency>
  227. <dependency>
  228. <groupId>commons-pool</groupId>
  229. <artifactId>commons-pool</artifactId>
  230. </dependency>
  231. <dependency>
  232. <groupId>commons-dbcp</groupId>
  233. <artifactId>commons-dbcp</artifactId>
  234. </dependency>
  235. <!-- redis -->
  236. <dependency>
  237. <groupId>redis.clients</groupId>
  238. <artifactId>jedis</artifactId>
  239. <version>2.7.3</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.springframework.data</groupId>
  243. <artifactId>spring-data-redis</artifactId>
  244. <version>1.6.0.RELEASE</version>
  245. </dependency>
  246. <!-- spring mobile -->
  247. <dependency>
  248. <groupId>org.springframework.mobile</groupId>
  249. <artifactId>spring-mobile-device</artifactId>
  250. </dependency>
  251. <!--json-lib -->
  252. <dependency>
  253. <groupId>net.sf.json-lib</groupId>
  254. <artifactId>json-lib</artifactId>
  255. <classifier>jdk15</classifier>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.codehaus.jackson</groupId>
  259. <artifactId>jackson-core-asl</artifactId>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.codehaus.jackson</groupId>
  263. <artifactId>jackson-mapper-asl</artifactId>
  264. </dependency>
  265. <dependency>
  266. <groupId>com.fasterxml.jackson.core</groupId>
  267. <artifactId>jackson-core</artifactId>
  268. </dependency>
  269. <dependency>
  270. <groupId>com.fasterxml.jackson.core</groupId>
  271. <artifactId>jackson-databind</artifactId>
  272. </dependency>
  273. <dependency>
  274. <groupId>com.fasterxml.jackson.core</groupId>
  275. <artifactId>jackson-annotations</artifactId>
  276. </dependency>
  277. <dependency>
  278. <groupId>com.alibaba</groupId>
  279. <artifactId>fastjson</artifactId>
  280. </dependency>
  281. <!-- velocity -->
  282. <dependency>
  283. <groupId>org.apache.velocity</groupId>
  284. <artifactId>velocity</artifactId>
  285. </dependency>
  286. <!-- mail -->
  287. <dependency>
  288. <groupId>javax.mail</groupId>
  289. <artifactId>mail</artifactId>
  290. </dependency>
  291. <!-- jxls -->
  292. <dependency>
  293. <groupId>net.sf.jxls</groupId>
  294. <artifactId>jxls-core</artifactId>
  295. <version>1.0.4</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>net.sf.jxls</groupId>
  299. <artifactId>jxls-reader</artifactId>
  300. <version>1.0.4</version>
  301. </dependency>
  302. <!-- poi -->
  303. <dependency>
  304. <groupId>org.apache.poi</groupId>
  305. <artifactId>poi</artifactId>
  306. <version>3.9</version>
  307. </dependency>
  308. <!-- BeeCloud支付集成SDK -->
  309. <dependency>
  310. <groupId>cn.beecloud</groupId>
  311. <artifactId>beecloud-java-sdk</artifactId>
  312. <version>3.1.0</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>jaxen</groupId>
  316. <artifactId>jaxen</artifactId>
  317. <version>1.1.6</version>
  318. <exclusions>
  319. <exclusion>
  320. <groupId>dom4j</groupId>
  321. <artifactId>dom4j</artifactId>
  322. </exclusion>
  323. <exclusion>
  324. <groupId>xml-apis</groupId>
  325. <artifactId>xml-apis</artifactId>
  326. </exclusion>
  327. <exclusion>
  328. <groupId>xerces</groupId>
  329. <artifactId>xmlParserAPIs</artifactId>
  330. </exclusion>
  331. <exclusion>
  332. <groupId>xerces</groupId>
  333. <artifactId>xercesImpl</artifactId>
  334. </exclusion>
  335. <exclusion>
  336. <groupId>xerces</groupId>
  337. <artifactId>xercesImpl</artifactId>
  338. </exclusion>
  339. <exclusion>
  340. <groupId>com.ibm.icu</groupId>
  341. <artifactId>icu4j</artifactId>
  342. </exclusion>
  343. </exclusions>
  344. </dependency>
  345. <!-- kafka消息中间件 -->
  346. <dependency>
  347. <groupId>org.springframework.kafka</groupId>
  348. <artifactId>spring-kafka</artifactId>
  349. <version>1.2.2.RELEASE</version>
  350. </dependency>
  351. <!-- dubbo -->
  352. <dependency>
  353. <groupId>com.alibaba</groupId>
  354. <artifactId>dubbo</artifactId>
  355. <exclusions>
  356. <exclusion>
  357. <groupId>javax.servlet</groupId>
  358. <artifactId>javax.servlet-api</artifactId>
  359. </exclusion>
  360. <exclusion>
  361. <groupId>org.apache.httpcomponents</groupId>
  362. <artifactId>httpcore</artifactId>
  363. </exclusion>
  364. </exclusions>
  365. </dependency>
  366. <dependency>
  367. <groupId>org.apache.zookeeper</groupId>
  368. <artifactId>zookeeper</artifactId>
  369. </dependency>
  370. <dependency>
  371. <groupId>com.github.sgroschupf</groupId>
  372. <artifactId>zkclient</artifactId>
  373. </dependency>
  374. <!-- service on dubbo -->
  375. <dependency>
  376. <groupId>com.uas.dfs</groupId>
  377. <artifactId>dfs-api</artifactId>
  378. </dependency>
  379. <!-- search -->
  380. <dependency>
  381. <groupId>com.uas.search</groupId>
  382. <artifactId>search-api</artifactId>
  383. </dependency>
  384. <dependency>
  385. <groupId>com.uas.message</groupId>
  386. <artifactId>message-mail-api</artifactId>
  387. </dependency>
  388. <dependency>
  389. <groupId>com.uas.message</groupId>
  390. <artifactId>message-sms-api</artifactId>
  391. </dependency>
  392. <dependency>
  393. <groupId>com.uas.account</groupId>
  394. <artifactId>account-common</artifactId>
  395. </dependency>
  396. <dependency>
  397. <groupId>net.sourceforge.pinyin4j</groupId>
  398. <artifactId>pinyin4j</artifactId>
  399. <version>1.1.0</version>
  400. </dependency>
  401. <!-- security -->
  402. <dependency>
  403. <groupId>org.springframework.security</groupId>
  404. <artifactId>spring-security-core</artifactId>
  405. </dependency>
  406. <dependency>
  407. <groupId>org.springframework.security</groupId>
  408. <artifactId>spring-security-config</artifactId>
  409. </dependency>
  410. <dependency>
  411. <groupId>org.springframework.security</groupId>
  412. <artifactId>spring-security-web</artifactId>
  413. </dependency>
  414. <!-- swagger-springmvc -->
  415. <dependency>
  416. <groupId>com.mangofactory</groupId>
  417. <artifactId>swagger-springmvc</artifactId>
  418. <version>1.0.2</version>
  419. </dependency>
  420. <dependency>
  421. <groupId>com.mangofactory</groupId>
  422. <artifactId>swagger-models</artifactId>
  423. <version>1.0.2</version>
  424. </dependency>
  425. <dependency>
  426. <groupId>com.wordnik</groupId>
  427. <artifactId>swagger-annotations</artifactId>
  428. <version>1.3.11</version>
  429. </dependency>
  430. <!-- swagger-springmvc dependencies -->
  431. <dependency>
  432. <groupId>com.google.guava</groupId>
  433. <artifactId>guava</artifactId>
  434. <version>15.0</version>
  435. </dependency>
  436. <dependency>
  437. <groupId>com.fasterxml</groupId>
  438. <artifactId>classmate</artifactId>
  439. <version>1.1.0</version>
  440. </dependency>
  441. </dependencies>
  442. <build>
  443. <finalName>platform-b2c</finalName>
  444. <!-- 受profile影响的目录 -->
  445. <resources>
  446. <resource>
  447. <directory>${basedir}/src/main/resources</directory>
  448. <filtering>true</filtering>
  449. <excludes>
  450. <exclude>**/*.xls</exclude>
  451. </excludes>
  452. </resource>
  453. <!-- xls文件不能filter处理,需区分出来 -->
  454. <resource>
  455. <directory>${basedir}/src/main/resources</directory>
  456. <filtering>false</filtering>
  457. <includes>
  458. <include>**/*.xls</include>
  459. </includes>
  460. </resource>
  461. </resources>
  462. <!-- 在maven生命周期validate阶段生成timestamp -->
  463. <plugins>
  464. <plugin>
  465. <groupId>org.codehaus.mojo</groupId>
  466. <artifactId>buildnumber-maven-plugin</artifactId>
  467. <version>1.3</version>
  468. <executions>
  469. <execution>
  470. <phase>validate</phase>
  471. <goals>
  472. <goal>create-timestamp</goal>
  473. </goals>
  474. </execution>
  475. </executions>
  476. <configuration>
  477. <format>{0,date,yyyy-MM-dd HH:mm:ss}</format>
  478. <items>
  479. <item>timestamp</item>
  480. </items>
  481. </configuration>
  482. </plugin>
  483. <plugin>
  484. <groupId>org.apache.maven.plugins</groupId>
  485. <artifactId>maven-compiler-plugin</artifactId>
  486. <configuration>
  487. <source>1.7</source>
  488. <target>1.7</target>
  489. </configuration>
  490. </plugin>
  491. <plugin>
  492. <groupId>com.samaxes.maven</groupId>
  493. <artifactId>minify-maven-plugin</artifactId>
  494. <version>1.7.4</version>
  495. <!-- 静态文件压缩 -->
  496. <executions>
  497. <execution>
  498. <id>default-minify</id>
  499. <phase>prepare-package</phase>
  500. <configuration>
  501. <charset>UTF-8</charset>
  502. <skipMerge>true</skipMerge>
  503. <closureLanguage>ECMASCRIPT5</closureLanguage>
  504. <closureAngularPass>true</closureAngularPass>
  505. <nosuffix>true</nosuffix>
  506. <webappTargetDir>${project.build.directory}/minify</webappTargetDir>
  507. <cssSourceDir>resources</cssSourceDir>
  508. <cssEngine>YUI</cssEngine>
  509. <jsSourceDir>resources</jsSourceDir>
  510. <jsEngine>YUI</jsEngine>
  511. <cssSourceIncludes>
  512. <cssSourceInclude>css/**/*.css</cssSourceInclude>
  513. <cssSourceInclude>data/**/*.json</cssSourceInclude>
  514. </cssSourceIncludes>
  515. <cssSourceExcludes>
  516. <cssSourceExclude>css/**/*.min.css</cssSourceExclude>
  517. </cssSourceExcludes>
  518. <jsSourceIncludes>
  519. <jsSourceInclude>js/**/*.js</jsSourceInclude>
  520. </jsSourceIncludes>
  521. <jsSourceExcludes>
  522. <jsSourceExclude>js/**/*.min.js</jsSourceExclude>
  523. </jsSourceExcludes>
  524. </configuration>
  525. <goals>
  526. <goal>minify</goal>
  527. </goals>
  528. </execution>
  529. </executions>
  530. </plugin>
  531. <plugin>
  532. <artifactId>maven-resources-plugin</artifactId>
  533. <executions>
  534. <execution>
  535. <id>copy-resources</id>
  536. <phase>prepare-package</phase>
  537. <goals>
  538. <goal>copy-resources</goal>
  539. </goals>
  540. <configuration>
  541. <outputDirectory>${project.build.directory}/minify</outputDirectory>
  542. <overwrite>false</overwrite>
  543. <resources>
  544. <resource>
  545. <directory>${basedir}/src/main/webapp</directory>
  546. </resource>
  547. </resources>
  548. </configuration>
  549. </execution>
  550. </executions>
  551. </plugin>
  552. <plugin>
  553. <groupId>com.uas.plugins</groupId>
  554. <artifactId>static-maven-plugin</artifactId>
  555. <version>0.0.2-SNAPSHOT</version>
  556. <!-- 静态资源分离 -->
  557. <executions>
  558. <execution>
  559. <id>default-static</id>
  560. <phase>prepare-package</phase>
  561. <configuration>
  562. <pathMatcher>static</pathMatcher>
  563. <staticUrl>${static-path}</staticUrl>
  564. <webappDir>${project.build.directory}/minify</webappDir>
  565. <sourceDir>/</sourceDir>
  566. <targetDir>${project.build.directory}/statics</targetDir>
  567. <staticDir>/</staticDir>
  568. <sourceIncludes>
  569. <sourceInclude>resources/js/**/*.js</sourceInclude>
  570. <sourceInclude>resources/data/**/*.json</sourceInclude>
  571. <sourceInclude>resources/view/**/*.html</sourceInclude>
  572. <sourceInclude>WEB-INF/views/**/*.html</sourceInclude>
  573. </sourceIncludes>
  574. <!-- http://static.ubtoc.com/css/index.css?_v=1450321871828 -->
  575. <versionSuffix>
  576. <suffix>?_v=${timestamp}</suffix>
  577. <exclude>*/require.js,*.min.js,*.min.css</exclude>
  578. </versionSuffix>
  579. </configuration>
  580. <goals>
  581. <goal>static</goal>
  582. </goals>
  583. </execution>
  584. </executions>
  585. </plugin>
  586. <plugin>
  587. <groupId>org.apache.maven.plugins</groupId>
  588. <artifactId>maven-war-plugin</artifactId>
  589. <version>2.4</version>
  590. <configuration>
  591. <webResources>
  592. <resource>
  593. <directory>${project.build.directory}/statics</directory>
  594. </resource>
  595. <resource>
  596. <directory>${project.build.directory}/minify</directory>
  597. </resource>
  598. </webResources>
  599. </configuration>
  600. </plugin>
  601. <plugin>
  602. <groupId>org.apache.tomcat.maven</groupId>
  603. <artifactId>tomcat7-maven-plugin</artifactId>
  604. <version>2.2</version>
  605. <configuration>
  606. <port>8080</port>
  607. <path>/platform-b2c</path>
  608. <uriEncoding>utf-8</uriEncoding>
  609. </configuration>
  610. </plugin>
  611. </plugins>
  612. <pluginManagement>
  613. <plugins>
  614. <plugin>
  615. <groupId>org.eclipse.m2e</groupId>
  616. <artifactId>lifecycle-mapping</artifactId>
  617. <version>1.0.0</version>
  618. <configuration>
  619. <lifecycleMappingMetadata>
  620. <pluginExecutions>
  621. <pluginExecution>
  622. <pluginExecutionFilter>
  623. <groupId>
  624. org.codehaus.mojo
  625. </groupId>
  626. <artifactId>
  627. buildnumber-maven-plugin
  628. </artifactId>
  629. <versionRange>
  630. [1.3,)
  631. </versionRange>
  632. <goals>
  633. <goal>
  634. create-timestamp
  635. </goal>
  636. </goals>
  637. </pluginExecutionFilter>
  638. <action>
  639. <ignore></ignore>
  640. </action>
  641. </pluginExecution>
  642. </pluginExecutions>
  643. </lifecycleMappingMetadata>
  644. </configuration>
  645. </plugin>
  646. </plugins>
  647. </pluginManagement>
  648. </build>
  649. <distributionManagement>
  650. <!-- 发布release仓库 -->
  651. <repository>
  652. <id>platform-release</id>
  653. <name>platform-release</name>
  654. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  655. </repository>
  656. <!-- 发布快照版本 -->
  657. <snapshotRepository>
  658. <id>platform-snapshots</id>
  659. <name>platform-snapshots</name>
  660. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  661. </snapshotRepository>
  662. </distributionManagement>
  663. </project>