pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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>climate</artifactId>
  7. <groupId>com.climate</groupId>
  8. <version>3.8.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>climate-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. <!-- swagger3-->
  24. <dependency>
  25. <groupId>io.springfox</groupId>
  26. <artifactId>springfox-boot-starter</artifactId>
  27. </dependency>
  28. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  29. <dependency>
  30. <groupId>io.swagger</groupId>
  31. <artifactId>swagger-models</artifactId>
  32. <version>1.6.2</version>
  33. </dependency>
  34. <!-- Mysql驱动包 -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. </dependency>
  39. <!-- 核心模块-->
  40. <dependency>
  41. <groupId>com.climate</groupId>
  42. <artifactId>climate-framework</artifactId>
  43. </dependency>
  44. <!-- 定时任务-->
  45. <dependency>
  46. <groupId>com.climate</groupId>
  47. <artifactId>climate-quartz</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.climate</groupId>
  51. <artifactId>climate_data</artifactId>
  52. <version>3.8.6</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
  56. <dependency>
  57. <groupId>commons-net</groupId>
  58. <artifactId>commons-net</artifactId>
  59. <version>3.6</version>
  60. </dependency>
  61. <!-- mybatis-plus依赖 -->
  62. <dependency>
  63. <groupId>com.baomidou</groupId>
  64. <artifactId>mybatis-plus-boot-starter</artifactId>
  65. <version>3.4.1</version>
  66. </dependency>
  67. <!-- 引入 Apache 的 commons-lang3 包,方便操作字符串-->
  68. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-lang3</artifactId>
  72. <version>3.8</version>
  73. </dependency>
  74. <!-- 引入 Apache commons-io 包,方便操作文件-->
  75. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  76. <dependency>
  77. <groupId>commons-io</groupId>
  78. <artifactId>commons-io</artifactId>
  79. <version>2.6</version>
  80. </dependency>
  81. <!-- <dependency>
  82. <groupId>org.assertj</groupId>
  83. <artifactId>assertj-core</artifactId>
  84. </dependency>-->
  85. <dependency>
  86. <groupId>org.apache.xmlgraphics</groupId>
  87. <artifactId>batik-css</artifactId>
  88. <version>1.14</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <version>2.1.1.RELEASE</version>
  98. <configuration>
  99. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  100. </configuration>
  101. <executions>
  102. <execution>
  103. <goals>
  104. <goal>repackage</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-war-plugin</artifactId>
  112. <version>3.1.0</version>
  113. <configuration>
  114. <failOnMissingWebXml>false</failOnMissingWebXml>
  115. <warName>${project.artifactId}</warName>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. <finalName>${project.artifactId}</finalName>
  120. </build>
  121. </project>