pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.mofang.travel.marketing</groupId>
  7. <artifactId>marketing</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.mofang.travel.marketing</groupId>
  12. <artifactId>marketing-base</artifactId>
  13. <version>${version}</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-test</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-aop</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-redis</artifactId>
  31. <version>1.4.7.RELEASE</version>
  32. </dependency>
  33. <!--MySQL 链接工具类-->
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <!--Mybatis 相关工具类-->
  39. <!-- <dependency>-->
  40. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  41. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  42. <!-- <version>${mybatis-spring.version}</version>-->
  43. <!-- </dependency>-->
  44. <!-- mybatis-plus -->
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-boot-starter</artifactId>
  48. <version>3.4.0</version>
  49. </dependency>
  50. <!-- commons -->
  51. <dependency>
  52. <groupId>org.apache.commons</groupId>
  53. <artifactId>commons-lang3</artifactId>
  54. <version>${apache-commons-lang3.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-all</artifactId>
  59. <version>5.7.20</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.kafka</groupId>
  64. <artifactId>spring-kafka</artifactId>
  65. <version>2.1.6.RELEASE</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.google.guava</groupId>
  69. <artifactId>guava</artifactId>
  70. <version>${google.guava.version}</version>
  71. </dependency>
  72. <!--阿里数据库连接池-->
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>druid-spring-boot-starter</artifactId>
  76. <version>1.1.20</version>
  77. </dependency>
  78. <!-- dubbo start -->
  79. <dependency>
  80. <groupId>org.apache.dubbo</groupId>
  81. <artifactId>dubbo-spring-boot-starter</artifactId>
  82. <version>2.7.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.dubbo</groupId>
  86. <artifactId>dubbo</artifactId>
  87. <version>${dubbo.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.curator</groupId>
  91. <artifactId>curator-recipes</artifactId>
  92. <version>2.13.0</version>
  93. </dependency>
  94. <!-- dubbo end-->
  95. <dependency>
  96. <groupId>com.mofangchuxing.lib</groupId>
  97. <artifactId>common-lib-core</artifactId>
  98. <version>1.0.0-SNAPSHOT</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.httpcomponents</groupId>
  102. <artifactId>httpclient</artifactId>
  103. <version>4.5.5</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.httpcomponents</groupId>
  107. <artifactId>httpcore</artifactId>
  108. <version>4.4.4</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.slf4j</groupId>
  112. <artifactId>slf4j-api</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.mofang.travel.marketing</groupId>
  116. <artifactId>marketing-api</artifactId>
  117. <version>${version}</version>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <finalName>marketing-base</finalName>
  122. <resources>
  123. <resource>
  124. <directory>src/main/resources</directory>
  125. <filtering>true</filtering>
  126. </resource>
  127. </resources>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-maven-plugin</artifactId>
  132. </plugin>
  133. <plugin>
  134. <groupId>org.mybatis.generator</groupId>
  135. <artifactId>mybatis-generator-maven-plugin</artifactId>
  136. <version>1.3.6</version>
  137. <configuration>
  138. <verbose>true</verbose>
  139. <overwrite>true</overwrite>
  140. </configuration>
  141. </plugin>
  142. <!--排除deploy-->
  143. <plugin>
  144. <groupId>org.apache.maven.plugins</groupId>
  145. <artifactId>maven-deploy-plugin</artifactId>
  146. <version>2.8.2</version>
  147. <configuration>
  148. <skip>true</skip>
  149. </configuration>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. </project>