pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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.2</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. <!--加载hutool-->
  20. <dependency>
  21. <groupId>cn.hutool</groupId>
  22. <artifactId>hutool-all</artifactId>
  23. </dependency>
  24. <!--加载beanutils-->
  25. <dependency>
  26. <groupId>commons-beanutils</groupId>
  27. <artifactId>commons-beanutils</artifactId>
  28. </dependency>
  29. </dependencies>
  30. </project>