pom.xml 1.3 KB

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