pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. <artifactId>xzl</artifactId>
  7. <groupId>com.xzl</groupId>
  8. <version>3.8.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>xzl-admin-digital</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.squareup.okhttp3</groupId>
  19. <artifactId>okhttp</artifactId>
  20. <version>4.11.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>io.minio</groupId>
  24. <artifactId>minio</artifactId>
  25. <version>8.5.7</version> <!-- 使用最新版本 -->
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aliyun</groupId>
  29. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  30. <version>2.0.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>am.lodge</groupId>
  34. <artifactId>am-lodge-commons</artifactId>
  35. <version>2.1.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <version>RELEASE</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpmime</artifactId>
  46. <version>4.5.5</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>fastjson</artifactId>
  51. <version>1.2.28</version>
  52. </dependency>
  53. <!-- spring-boot-devtools -->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-devtools</artifactId>
  57. <optional>true</optional> <!-- 表示依赖不会传递 -->
  58. </dependency>
  59. <!-- swagger3-->
  60. <dependency>
  61. <groupId>io.springfox</groupId>
  62. <artifactId>springfox-boot-starter</artifactId>
  63. </dependency>
  64. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  65. <dependency>
  66. <groupId>io.swagger</groupId>
  67. <artifactId>swagger-models</artifactId>
  68. <version>1.6.2</version>
  69. </dependency>
  70. <!-- Mysql驱动包 -->
  71. <dependency>
  72. <groupId>mysql</groupId>
  73. <artifactId>mysql-connector-java</artifactId>
  74. </dependency>
  75. <!-- 核心模块-->
  76. <dependency>
  77. <groupId>com.xzl</groupId>
  78. <artifactId>xzl-framework</artifactId>
  79. </dependency>
  80. <!-- 定时任务-->
  81. <dependency>
  82. <groupId>com.xzl</groupId>
  83. <artifactId>xzl-quartz</artifactId>
  84. </dependency>
  85. <!-- 代码生成-->
  86. <dependency>
  87. <groupId>com.xzl</groupId>
  88. <artifactId>xzl-generator</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.projectlombok</groupId>
  92. <artifactId>lombok</artifactId>
  93. </dependency>
  94. <!-- 监听MySQL的binlog实现监听数据变化 -->
  95. <dependency>
  96. <groupId>com.zendesk</groupId>
  97. <artifactId>mysql-binlog-connector-java</artifactId>
  98. <version>0.27.1</version>
  99. </dependency>
  100. <!--
  101. <dependency>
  102. <groupId>com.github.shyiko</groupId>
  103. <artifactId>mysql-binlog-connector-java</artifactId>
  104. <version>0.16.1</version>
  105. </dependency>
  106. -->
  107. <dependency>
  108. <groupId>com.aliyun</groupId>
  109. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  110. <version>2.0.0</version>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-maven-plugin</artifactId>
  118. <version>2.5.15</version>
  119. <configuration>
  120. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  121. </configuration>
  122. <executions>
  123. <execution>
  124. <goals>
  125. <goal>repackage</goal>
  126. </goals>
  127. </execution>
  128. </executions>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-war-plugin</artifactId>
  133. <version>3.1.0</version>
  134. <configuration>
  135. <failOnMissingWebXml>false</failOnMissingWebXml>
  136. <warName>${project.artifactId}</warName>
  137. </configuration>
  138. </plugin>
  139. </plugins>
  140. <finalName>${project.artifactId}</finalName>
  141. </build>
  142. </project>