pom.xml 3.6 KB

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