pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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>huimv-farm-device</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-farm-eco</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-amqp</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.baomidou</groupId>
  19. <artifactId>mybatis-plus-boot-starter</artifactId>
  20. <version>3.4.2</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.baomidou</groupId>
  24. <artifactId>mybatis-plus-extension</artifactId>
  25. <version>3.4.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-generator</artifactId>
  30. <version>3.2.0</version>
  31. </dependency>
  32. <!-- <dependency>
  33. <groupId>com.huimv</groupId>
  34. <artifactId>huimv-common</artifactId>
  35. <version>0.0.1-SNAPSHOT</version>
  36. </dependency>-->
  37. <dependency>
  38. <groupId>com.google.code.gson</groupId>
  39. <artifactId>gson</artifactId>
  40. <version>2.8.6</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.fryderykhuang</groupId>
  44. <artifactId>signalr4j</artifactId>
  45. <version>3.0.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.httpcomponents</groupId>
  49. <artifactId>httpclient-cache</artifactId>
  50. <version>4.5.3</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpcore</artifactId>
  55. <version>4.4.4</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-httpclient</groupId>
  59. <artifactId>commons-httpclient</artifactId>
  60. <version>3.1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.zhenzikj</groupId>
  64. <artifactId>zhenzisms</artifactId>
  65. <version>2.0.2</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.data</groupId>
  69. <artifactId>spring-data-jpa</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>cn.hutool</groupId>
  73. <artifactId>hutool-all</artifactId>
  74. <version>5.8.4</version>
  75. <scope>compile</scope>
  76. </dependency>
  77. <!-- JPA -->
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <version>3.8.1</version>
  85. <configuration>
  86. <source>1.8</source>
  87. <target>1.8</target>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>