pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-datacenter</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.huimv</groupId>
  12. <!-- <artifactId>huimv-env-admin</artifactId>-->
  13. <artifactId>huimv-eartag2-admin</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <dependencies>
  16. <!-- eartag2-common -->
  17. <dependency>
  18. <groupId>com.huimv</groupId>
  19. <artifactId>huimv-eartag2-common</artifactId>
  20. <version>0.0.2-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <optional>true</optional>
  26. </dependency>
  27. <dependency>
  28. <groupId>javax.xml.bind</groupId>
  29. <artifactId>jaxb-api</artifactId>
  30. <version>2.3.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.dustlight.captcha</groupId>
  34. <artifactId>redis-store</artifactId>
  35. <version>0.0.6</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.dustlight.captcha</groupId>
  39. <artifactId>captcha-core</artifactId>
  40. <version>0.0.6</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.hutool</groupId>
  44. <artifactId>hutool-all</artifactId>
  45. <version>5.7.11</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.freemarker</groupId>
  49. <artifactId>freemarker</artifactId>
  50. <version>2.3.31</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-boot-starter</artifactId>
  55. <version>3.4.3.4</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.baomidou</groupId>
  59. <artifactId>mybatis-plus-extension</artifactId>
  60. <version>3.5.2</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.baomidou</groupId>
  64. <artifactId>mybatis-plus-generator</artifactId>
  65. <version>3.3.2</version>
  66. </dependency>
  67. <!-- velocity -->
  68. <dependency>
  69. <groupId>org.apache.velocity</groupId>
  70. <artifactId>velocity-engine-core</artifactId>
  71. <version>2.0</version>
  72. </dependency>
  73. </dependencies>
  74. <build>
  75. <finalName>huimv-farm-admin2-0.0.1-SNAPSHOT</finalName>
  76. <plugins>
  77. <!-- -->
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. </plugin>
  82. <!-- -->
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-resources-plugin</artifactId>
  86. <version>2.6</version>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>