pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <dependency>
  18. <groupId>com.koobietech.eas</groupId>
  19. <artifactId>mbg</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. </dependencies>
  24. <parent>
  25. <artifactId>eas-system</artifactId>
  26. <groupId>com.koobietech.eas</groupId>
  27. <version>0.0.1-SNAPSHOT</version>
  28. </parent>
  29. <repositories>
  30. <repository>
  31. <id>aliyun</id>
  32. <name>aliyun</name>
  33. <url>https://maven.aliyun.com/repository/public</url>
  34. <releases>
  35. <enabled>true</enabled>
  36. </releases>
  37. <snapshots>
  38. <enabled>false</enabled>
  39. </snapshots>
  40. </repository>
  41. </repositories>
  42. </project>