pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.fastbee</groupId>
  8. <artifactId>fastbee-plugs</artifactId>
  9. <version>3.8.5</version>
  10. <relativePath>./fastbee-plugs/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>fastbee-http</artifactId>
  13. <version>3.8.5</version>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.dtflys.forest</groupId>
  22. <artifactId>forest-spring-boot-starter</artifactId>
  23. <version>${forest.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.dtflys.forest</groupId>
  27. <artifactId>forest-jaxb</artifactId>
  28. <version>${forest.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-all</artifactId>
  33. </dependency>
  34. </dependencies>
  35. </project>