pom.xml 4.8 KB

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