pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.keao.edu</groupId>
  7. <artifactId>edu-saas</artifactId>
  8. <version>1.0</version>
  9. </parent>
  10. <groupId>com.keao.edu</groupId>
  11. <artifactId>edu-thirdparty</artifactId>
  12. <version>1.0</version>
  13. <name>edu-thirdparty</name>
  14. <url>http://maven.apache.org</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>3.8.1</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-context</artifactId>
  28. <version>5.1.8.RELEASE</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.aliyun.oss</groupId>
  33. <artifactId>aliyun-sdk-oss</artifactId>
  34. <version>2.8.3</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.keao.edu</groupId>
  38. <artifactId>edu-util</artifactId>
  39. </dependency>
  40. </dependencies>
  41. </project>