pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <groupId>com.zswl</groupId>
  7. <artifactId>ConfigModel</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <name>ConfigModel</name>
  10. <description>ConfigModel</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.projectlombok</groupId>
  14. <artifactId>lombok</artifactId>
  15. <optional>true</optional>
  16. <version>1.18.32</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.github.xiaoymin</groupId>
  20. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  21. <version>4.5.0</version>
  22. </dependency>
  23. <!-- 工具类 -->
  24. <dependency>
  25. <groupId>cn.hutool</groupId>
  26. <artifactId>hutool-all</artifactId>
  27. <version>5.8.20</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.data</groupId>
  31. <artifactId>spring-data-jpa</artifactId>
  32. <version>3.2.3</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <configuration>
  41. <source>9</source>
  42. <target>9</target>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>