pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>mec</artifactId>
  7. <groupId>com.ym</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <artifactId>mec-thirdparty</artifactId>
  11. <name>mec-thirdparty</name>
  12. <!-- FIXME change it to the project's website -->
  13. <url>http://www.example.com</url>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.ym</groupId>
  17. <artifactId>mec-util</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.aliyun.oss</groupId>
  21. <artifactId>aliyun-sdk-oss</artifactId>
  22. <version>2.8.3</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.timevale</groupId>
  26. <artifactId>tech-sdk</artifactId>
  27. <version>2.1.20</version>
  28. <scope>system</scope>
  29. <systemPath>${project.basedir}/libs/tech-sdk-2.1.20.jar</systemPath>
  30. </dependency>
  31. </dependencies>
  32. </project>