pom.xml 5.5 KB

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