pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>huimv-farm-admin</module>
  8. <module>huimv-farm-video</module>
  9. <module>huimv-farm-produce</module>
  10. <module>huimv-farm-environ</module>
  11. <module>huimv-farm-gateway</module>
  12. <module>huimv-farm-receiver</module>
  13. </modules>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.6.1</version>
  18. <relativePath/> <!-- lookup parent from repository -->
  19. </parent>
  20. <groupId>com.huimv</groupId>
  21. <artifactId>huimv-farm-datacenter</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. <name>huimv-farm-datacenter</name>
  24. <description>Demo project for Spring Boot</description>
  25. <properties>
  26. <java.version>1.8</java.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <!--CloseableHttpClient-->
  39. <dependency>
  40. <groupId>org.apache.httpcomponents</groupId>
  41. <artifactId>httpclient</artifactId>
  42. <version>4.5.2</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.hutool</groupId>
  46. <artifactId>hutool-all</artifactId>
  47. <version>5.7.11</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.freemarker</groupId>
  51. <artifactId>freemarker</artifactId>
  52. <version>2.3.28</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus-boot-starter</artifactId>
  57. <version>3.4.2</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>mybatis-plus-extension</artifactId>
  62. <version>3.4.2</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.baomidou</groupId>
  66. <artifactId>mybatis-plus-generator</artifactId>
  67. <version>3.2.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. <optional>true</optional>
  73. </dependency>
  74. <!-- &lt;!&ndash; JPA &ndash;&gt;-->
  75. <!-- <dependency>-->
  76. <!-- <groupId>org.springframework.boot</groupId>-->
  77. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  78. <!-- </dependency>-->
  79. <!-- MySQL -->
  80. <dependency>
  81. <groupId>mysql</groupId>
  82. <artifactId>mysql-connector-java</artifactId>
  83. <scope>runtime</scope>
  84. </dependency>
  85. <!-- fastjson -->
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>fastjson</artifactId>
  89. <version>1.2.28</version>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <configuration>
  98. <classifier>execute</classifier>
  99. </configuration>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-resources-plugin</artifactId>
  104. <version>2.6</version>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>