pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. <!-- -->
  39. <dependency>
  40. <groupId>com.huimv</groupId>
  41. <artifactId>huimv-common</artifactId>
  42. <version>0.0.1-SNAPSHOT</version>
  43. </dependency>
  44. <!--CloseableHttpClient-->
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpclient</artifactId>
  48. <version>4.5.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.hutool</groupId>
  52. <artifactId>hutool-all</artifactId>
  53. <version>5.7.11</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.freemarker</groupId>
  57. <artifactId>freemarker</artifactId>
  58. <version>2.3.28</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-boot-starter</artifactId>
  63. <version>3.4.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-extension</artifactId>
  68. <version>3.4.2</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>mybatis-plus-generator</artifactId>
  73. <version>3.2.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. <optional>true</optional>
  79. </dependency>
  80. <!-- &lt;!&ndash; JPA &ndash;&gt;-->
  81. <!-- <dependency>-->
  82. <!-- <groupId>org.springframework.boot</groupId>-->
  83. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  84. <!-- </dependency>-->
  85. <!-- MySQL -->
  86. <dependency>
  87. <groupId>mysql</groupId>
  88. <artifactId>mysql-connector-java</artifactId>
  89. <scope>runtime</scope>
  90. </dependency>
  91. <!-- fastjson -->
  92. <dependency>
  93. <groupId>com.alibaba</groupId>
  94. <artifactId>fastjson</artifactId>
  95. <version>1.2.28</version>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. <configuration>
  104. <classifier>execute</classifier>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-resources-plugin</artifactId>
  110. <version>2.6</version>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. </project>