pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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>ie</artifactId>
  7. <groupId>com.ie</groupId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ie-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.github.binarywang</groupId>
  19. <artifactId>weixin-java-pay</artifactId>
  20. <version>4.6.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.github.wechatpay-apiv3</groupId>
  24. <artifactId>wechatpay-java</artifactId>
  25. <version>0.2.12</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.vladsch.flexmark</groupId>
  29. <artifactId>flexmark-all</artifactId>
  30. <version>0.42.14</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.jxls</groupId>
  34. <artifactId>jxls-poi</artifactId>
  35. </dependency>
  36. <!-- spring-boot-devtools -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-devtools</artifactId>
  40. <optional>true</optional> <!-- 表示依赖不会传递 -->
  41. </dependency>
  42. <!-- swagger3-->
  43. <dependency>
  44. <groupId>io.springfox</groupId>
  45. <artifactId>springfox-boot-starter</artifactId>
  46. </dependency>
  47. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  48. <dependency>
  49. <groupId>io.swagger</groupId>
  50. <artifactId>swagger-models</artifactId>
  51. <version>1.6.2</version>
  52. </dependency>
  53. <!-- Mysql驱动包 -->
  54. <dependency>
  55. <groupId>mysql</groupId>
  56. <artifactId>mysql-connector-java</artifactId>
  57. </dependency>
  58. <!-- 核心模块-->
  59. <dependency>
  60. <groupId>com.ie</groupId>
  61. <artifactId>ie-framework</artifactId>
  62. </dependency>
  63. <!-- 定时任务-->
  64. <dependency>
  65. <groupId>com.ie</groupId>
  66. <artifactId>ie-quartz</artifactId>
  67. </dependency>
  68. <!-- 代码生成-->
  69. <dependency>
  70. <groupId>com.ie</groupId>
  71. <artifactId>ie-generator</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>junit</groupId>
  79. <artifactId>junit</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. <version>2.5.15</version>
  89. <configuration>
  90. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  91. </configuration>
  92. <executions>
  93. <execution>
  94. <goals>
  95. <goal>repackage</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-war-plugin</artifactId>
  103. <version>3.1.0</version>
  104. <configuration>
  105. <failOnMissingWebXml>false</failOnMissingWebXml>
  106. <warName>${project.artifactId}</warName>
  107. </configuration>
  108. </plugin>
  109. </plugins>
  110. <finalName>${project.artifactId}</finalName>
  111. </build>
  112. </project>