pom.xml 18 KB

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