123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.winhc</groupId>
- <artifactId>max-compute-graph</artifactId>
- <version>1.3</version>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.aliyun.odps</groupId>
- <artifactId>odps-sdk-graph</artifactId>
- <version>0.38.4-public</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun.odps</groupId>
- <artifactId>odps-graph-local</artifactId>
- <version>0.38.4-public</version>
- <scope>compile</scope>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>cn.hutool</groupId>-->
- <!-- <artifactId>hutool-all</artifactId>-->
- <!-- <version>5.7.10</version>-->
- <!-- </dependency>-->
- <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.20</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </project>
|