pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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.xyzc</groupId>
  8. <artifactId>xyzc-common</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>xyzc-common-doc</artifactId>
  12. <description>
  13. xyzc-common-doc 文档接口
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.xyzc</groupId>
  18. <artifactId>xyzc-common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springdoc</groupId>
  22. <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.github.therapi</groupId>
  26. <artifactId>therapi-runtime-javadoc</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.fasterxml.jackson.module</groupId>
  30. <artifactId>jackson-module-kotlin</artifactId>
  31. </dependency>
  32. </dependencies>
  33. </project>