pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.huimv</groupId>
  12. <artifactId>huimv-new-env-input</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <java.version>8</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-websocket</artifactId>
  21. <version>2.3.1.RELEASE</version>
  22. </dependency>
  23. <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
  24. <dependency>
  25. <groupId>net.java.dev.jna</groupId>
  26. <artifactId>jna</artifactId>
  27. <version>5.13.0</version>
  28. </dependency>
  29. <!-- HttpClient -->
  30. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  31. <dependency>
  32. <groupId>org.apache.httpcomponents</groupId>
  33. <artifactId>httpclient</artifactId>
  34. <version>4.5.13</version>
  35. </dependency>
  36. <!-- log4j -->
  37. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  38. <dependency>
  39. <groupId>log4j</groupId>
  40. <artifactId>log4j</artifactId>
  41. <version>1.2.17</version>
  42. </dependency>
  43. <!--生成二维码-->
  44. <dependency>
  45. <groupId>com.google.zxing</groupId>
  46. <artifactId>core</artifactId>
  47. <version>3.4.1</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.google.zxing</groupId>
  51. <artifactId>javase</artifactId>
  52. <version>3.4.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>1.2.78</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>mybatis-plus-generator</artifactId>
  62. <!-- <version>3.3.1.tmp</version>-->
  63. <version>3.3.2</version>
  64. </dependency>
  65. <!--mybits-plus-->
  66. <dependency>
  67. <groupId>com.baomidou</groupId>
  68. <artifactId>mybatis-plus-boot-starter</artifactId>
  69. <!-- <version>3.4.2</version>-->
  70. <version>3.4.3.4</version>
  71. </dependency>
  72. <!-- mybatis-plus-extension -->
  73. <dependency>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>mybatis-plus-extension</artifactId>
  76. <version>3.5.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-jdbc</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-web</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.projectlombok</groupId>
  88. <artifactId>lombok</artifactId>
  89. <optional>true</optional>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <!-- mysql -->
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>cn.hutool</groupId>
  103. <artifactId>hutool-all</artifactId>
  104. <version>5.8.5</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>io.netty</groupId>
  108. <artifactId>netty-all</artifactId>
  109. <version>4.1.45.Final</version>
  110. </dependency>
  111. </dependencies>
  112. <build>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-maven-plugin</artifactId>
  117. <configuration>
  118. <excludes>
  119. <exclude>
  120. <groupId>org.projectlombok</groupId>
  121. <artifactId>lombok</artifactId>
  122. </exclude>
  123. </excludes>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>