pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <artifactId>dao</artifactId>
  6. <name>dao</name>
  7. <description>dao</description>
  8. <dependencies>
  9. <dependency>
  10. <groupId>com.github.xiaoymin</groupId>
  11. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  12. </dependency>
  13. </dependencies>
  14. <parent>
  15. <artifactId>eas-system</artifactId>
  16. <groupId>com.koobietech.eas</groupId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. </parent>
  19. <repositories>
  20. <repository>
  21. <id>aliyun</id>
  22. <name>aliyun</name>
  23. <url>https://maven.aliyun.com/repository/public</url>
  24. <releases>
  25. <enabled>true</enabled>
  26. </releases>
  27. <snapshots>
  28. <enabled>false</enabled>
  29. </snapshots>
  30. </repository>
  31. </repositories>
  32. </project>