pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.poyee</groupId>
  8. <artifactId>product-promotion</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>poyee-admin</artifactId>
  12. <name>后台管理</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-validation</artifactId>
  21. </dependency>
  22. <!-- 热更新-->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-devtools</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mybatis.spring.boot</groupId>
  34. <artifactId>mybatis-spring-boot-starter</artifactId>
  35. </dependency>
  36. <!--阿里数据库连接池 -->
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>druid-spring-boot-starter</artifactId>
  40. <version>1.2.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>mybatis-plus-core</artifactId>
  45. <version>3.5.2</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  51. <version>3.4.0</version>
  52. </dependency>
  53. <!-- -->
  54. <dependency>
  55. <groupId>org.postgresql</groupId>
  56. <artifactId>postgresql</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <optional>true</optional>
  62. </dependency>
  63. <!--logback-->
  64. <dependency>
  65. <groupId>org.codehaus.janino</groupId>
  66. <artifactId>janino</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.sndyuk</groupId>
  70. <artifactId>logback-more-appenders</artifactId>
  71. <version>1.8.5</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.fluentd</groupId>
  75. <artifactId>fluent-logger</artifactId>
  76. <version>0.3.4</version>
  77. </dependency>
  78. <!-- flyway -->
  79. <dependency>
  80. <groupId>org.flywaydb</groupId>
  81. <artifactId>flyway-core</artifactId>
  82. </dependency>
  83. <!--模块-->
  84. <dependency>
  85. <groupId>com.poyee</groupId>
  86. <artifactId>poyee-base</artifactId>
  87. </dependency>
  88. <!--推广任务-->
  89. <dependency>
  90. <groupId>com.poyee</groupId>
  91. <artifactId>task</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.poyee</groupId>
  95. <artifactId>system-base</artifactId>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. <!-- <version>2.1.1.RELEASE</version>-->
  104. <version>2.3.5.RELEASE</version>
  105. <configuration>
  106. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  107. <includeSystemScope>true</includeSystemScope>
  108. </configuration>
  109. <executions>
  110. <execution>
  111. <goals>
  112. <goal>repackage</goal>
  113. </goals>
  114. </execution>
  115. </executions>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-war-plugin</artifactId>
  120. <version>3.0.0</version>
  121. <configuration>
  122. <failOnMissingWebXml>false</failOnMissingWebXml>
  123. <warName>${project.artifactId}</warName>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. <finalName>${project.artifactId}</finalName>
  128. </build>
  129. </project>