pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. <groupId>com.miaxis</groupId>
  7. <artifactId>hzgzpt</artifactId>
  8. <version>3.2.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>war</packaging>
  12. <artifactId>hzgzpt-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional> <!-- 表示依赖不会传递 -->
  22. </dependency>
  23. <!-- swagger2-->
  24. <dependency>
  25. <groupId>io.springfox</groupId>
  26. <artifactId>springfox-swagger2</artifactId>
  27. </dependency>
  28. <!-- Mysql驱动包 -->
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. </dependency>
  33. <!-- 核心模块-->
  34. <dependency>
  35. <groupId>com.miaxis</groupId>
  36. <artifactId>hzgzpt-framework</artifactId>
  37. </dependency>
  38. <!-- pc端-->
  39. <dependency>
  40. <groupId>com.miaxis</groupId>
  41. <artifactId>hzgzpt-service-pc</artifactId>
  42. <version>3.2.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <!-- app端-->
  50. <dependency>
  51. <groupId>com.miaxis</groupId>
  52. <artifactId>hzgzpt-service-app</artifactId>
  53. <version>3.2.1</version>
  54. </dependency>
  55. <!-- 定时任务-->
  56. <!--<dependency>-->
  57. <!--<groupId>com.miaxist</groupId>-->
  58. <!--<artifactId>miaxis-quartz</artifactId>-->
  59. <!--</dependency>-->
  60. <!-- 代码生成-->
  61. <dependency>
  62. <groupId>com.miaxis</groupId>
  63. <artifactId>hzgzpt-generator</artifactId>
  64. <version>3.2.1</version>
  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.1.1.RELEASE</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>