pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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>redis.clients</groupId>
  25. <artifactId>jedis</artifactId>
  26. <version>3.1.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.redisson</groupId>
  30. <artifactId>redisson</artifactId>
  31. <version>3.36.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.commons</groupId>
  35. <artifactId>commons-pool2</artifactId>
  36. </dependency>
  37. <!--加载hutool-->
  38. <dependency>
  39. <groupId>cn.hutool</groupId>
  40. <artifactId>hutool-all</artifactId>
  41. </dependency>
  42. <!--加载beanutils-->
  43. <dependency>
  44. <groupId>commons-beanutils</groupId>
  45. <artifactId>commons-beanutils</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>