pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <description>公共模块</description>
  11. <artifactId>jeecg-boot-base-tools</artifactId>
  12. <dependencies>
  13. <!--集成springmvc框架 -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. <optional>true</optional>
  18. </dependency>
  19. <!-- Redis -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-data-redis</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.commons</groupId>
  26. <artifactId>commons-pool2</artifactId>
  27. </dependency>
  28. <!--加载hutool-->
  29. <dependency>
  30. <groupId>cn.hutool</groupId>
  31. <artifactId>hutool-all</artifactId>
  32. </dependency>
  33. <!--加载beanutils-->
  34. <dependency>
  35. <groupId>commons-beanutils</groupId>
  36. <artifactId>commons-beanutils</artifactId>
  37. </dependency>
  38. </dependencies>
  39. </project>