pom.xml 948 B

12345678910111213141516171819202122232425262728
  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>upload</artifactId>
  6. <name>upload</name>
  7. <description>upload</description>
  8. <parent>
  9. <artifactId>eas-system</artifactId>
  10. <groupId>com.koobietech.eas</groupId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. </parent>
  13. <repositories>
  14. <repository>
  15. <id>aliyun</id>
  16. <name>aliyun</name>
  17. <url>https://maven.aliyun.com/repository/public</url>
  18. <releases>
  19. <enabled>true</enabled>
  20. </releases>
  21. <snapshots>
  22. <enabled>false</enabled>
  23. </snapshots>
  24. </repository>
  25. </repositories>
  26. </project>