pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>tourShare</artifactId>
  7. <groupId>com.xmyy</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>tourShare-Buyer-Service</artifactId>
  11. <packaging>war</packaging>
  12. <!--<name>买家接口实现</name>-->
  13. <properties>
  14. <rpc.port>${buyer.service.rpc.port}</rpc.port>
  15. <server.port>${buyer.service.tomcat.port}</server.port>
  16. <jar.dic>${project.basedir}/../</jar.dic>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.xmyy</groupId>
  21. <artifactId>tourShare-Common</artifactId>
  22. <version>${project.version}</version>
  23. <exclusions>
  24. <exclusion>
  25. <groupId>*</groupId>
  26. <artifactId>*</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.xmyy</groupId>
  32. <artifactId>tourShare-Circle-Facade</artifactId>
  33. <version>${project.version}</version>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>*</groupId>
  37. <artifactId>*</artifactId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.xmyy</groupId>
  43. <artifactId>tourShare-Demand-Facade</artifactId>
  44. <version>${project.version}</version>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>*</groupId>
  48. <artifactId>*</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.xmyy</groupId>
  54. <artifactId>tourShare-Member-Facade</artifactId>
  55. <version>${project.version}</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>*</groupId>
  59. <artifactId>*</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.xmyy</groupId>
  65. <artifactId>tourShare-Order-Facade</artifactId>
  66. <version>${project.version}</version>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>*</groupId>
  70. <artifactId>*</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.xmyy</groupId>
  76. <artifactId>tourShare-Product-Facade</artifactId>
  77. <version>${project.version}</version>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>*</groupId>
  81. <artifactId>*</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.xmyy</groupId>
  87. <artifactId>tourShare-Pay-Facade</artifactId>
  88. <version>${project.version}</version>
  89. <exclusions>
  90. <exclusion>
  91. <groupId>*</groupId>
  92. <artifactId>*</artifactId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. <!-- Mysql -->
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. <version>${mysql.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>druid</artifactId>
  105. <version>${druid.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.baomidou</groupId>
  109. <artifactId>mybatis-plus</artifactId>
  110. <version>${mybatis-plus.version}</version>
  111. </dependency>
  112. <!-- Spring -->
  113. <dependency>
  114. <groupId>org.springframework</groupId>
  115. <artifactId>spring-jdbc</artifactId>
  116. <version>${spring.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework</groupId>
  120. <artifactId>spring-oxm</artifactId>
  121. <version>${spring.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework</groupId>
  125. <artifactId>spring-tx</artifactId>
  126. <version>${spring.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework</groupId>
  130. <artifactId>spring-aop</artifactId>
  131. <version>${spring.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-httpclient</groupId>
  135. <artifactId>commons-httpclient</artifactId>
  136. <version>3.1</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.squareup.okhttp3</groupId>
  140. <artifactId>okhttp</artifactId>
  141. <version>3.10.0</version>
  142. </dependency>
  143. </dependencies>
  144. </project>