pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>jeecg-boot-base</artifactId>
  7. <version>2.4.5</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-base-tools</artifactId>
  11. <dependencies>
  12. <!--集成springmvc框架 -->
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. <optional>true</optional>
  17. </dependency>
  18. <!-- Redis -->
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-data-redis</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.commons</groupId>
  25. <artifactId>commons-pool2</artifactId>
  26. </dependency>
  27. <!--加载hutool-->
  28. <dependency>
  29. <groupId>cn.hutool</groupId>
  30. <artifactId>hutool-all</artifactId>
  31. </dependency>
  32. <!--加载beanutils-->
  33. <dependency>
  34. <groupId>commons-beanutils</groupId>
  35. <artifactId>commons-beanutils</artifactId>
  36. </dependency>
  37. </dependencies>
  38. </project>