pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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-video</module>
  8. <module>huimv-admin</module>
  9. <module>huimv-security</module>
  10. <module>huimv-env</module>
  11. <module>huimv-produce-warning</module>
  12. </modules>
  13. <parent>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-parent</artifactId>
  16. <version>2.5.4</version>
  17. <relativePath/> <!-- lookup parent from repository -->
  18. </parent>
  19. <groupId>com.huimv</groupId>
  20. <artifactId>farm</artifactId>
  21. <version>0.0.1-SNAPSHOT</version>
  22. <name>farm</name>
  23. <description>Demo project for Spring Boot</description>
  24. <properties>
  25. <java.version>1.8</java.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <!--CloseableHttpClient-->
  38. <dependency>
  39. <groupId>org.apache.httpcomponents</groupId>
  40. <artifactId>httpclient</artifactId>
  41. <version>4.5.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.hutool</groupId>
  45. <artifactId>hutool-all</artifactId>
  46. <version>5.7.11</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.freemarker</groupId>
  50. <artifactId>freemarker</artifactId>
  51. <version>2.3.28</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-boot-starter</artifactId>
  56. <version>3.4.2</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.baomidou</groupId>
  60. <artifactId>mybatis-plus-extension</artifactId>
  61. <version>3.4.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.baomidou</groupId>
  65. <artifactId>mybatis-plus-generator</artifactId>
  66. <version>3.2.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <optional>true</optional>
  72. </dependency>
  73. <!-- &lt;!&ndash; JPA &ndash;&gt;-->
  74. <!-- <dependency>-->
  75. <!-- <groupId>org.springframework.boot</groupId>-->
  76. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  77. <!-- </dependency>-->
  78. <!-- MySQL -->
  79. <dependency>
  80. <groupId>mysql</groupId>
  81. <artifactId>mysql-connector-java</artifactId>
  82. <scope>runtime</scope>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. <configuration>
  91. <classifier>execute</classifier>
  92. </configuration>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>