pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>gihon.common</groupId>
  7. <artifactId>common-parent</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <artifactId>common-entity</artifactId>
  12. <name>common-entity</name>
  13. <packaging>jar</packaging>
  14. <description>通用实体</description>
  15. <dependencies>
  16. <!-- mybatis-plus -->
  17. <dependency>
  18. <groupId>com.baomidou</groupId>
  19. <artifactId>mybatis-plus-boot-starter</artifactId>
  20. </dependency>
  21. <!-- Slf4j日志 -->
  22. <dependency>
  23. <groupId>org.slf4j</groupId>
  24. <artifactId>slf4j-api</artifactId>
  25. </dependency>
  26. <!-- Valid 校验 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-validation</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.github.xiaoymin</groupId>
  37. <artifactId>knife4j-spring-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>gihon.common</groupId>
  41. <artifactId>common-util</artifactId>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. </build>
  46. </project>