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"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.winhc</groupId>
  7. <artifactId>max-compute-graph</artifactId>
  8. <version>1.2</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.aliyun.odps</groupId>
  16. <artifactId>odps-sdk-graph</artifactId>
  17. <version>0.38.4-public</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>log4j</groupId>
  21. <artifactId>log4j</artifactId>
  22. <version>1.2.17</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.aliyun.odps</groupId>
  26. <artifactId>odps-graph-local</artifactId>
  27. <version>0.38.4-public</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-all</artifactId>
  33. <version>5.7.10</version>
  34. </dependency>
  35. </dependencies>
  36. </project>