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