pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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-local-weight</module>
  8. <module>huimv-farm-cloud-environ</module>
  9. <module>huimv-farm-local</module>
  10. <module>huimv-farm-cloud</module>
  11. </modules>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.6.1</version>
  16. <relativePath/> <!-- lookup parent from repository -->
  17. </parent>
  18. <groupId>com.huimv</groupId>
  19. <artifactId>huimv-farm-device</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. <name>huimv-farm-device</name>
  22. <description>Demo project for Spring Boot</description>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
  37. <dependency>
  38. <groupId>io.netty</groupId>
  39. <artifactId>netty-all</artifactId>
  40. <version>4.1.16.Final</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-resources-plugin</artifactId>
  52. <version>2.6</version>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>