pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.4</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. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. <version>1.18.20</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>