pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.aliyun.odps.myJava</groupId>
  7. <artifactId>elab_udf</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.aliyun.odps</groupId>
  12. <artifactId>odps-sdk-core</artifactId>
  13. <version>${sdk.version}</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.aliyun.odps</groupId>
  17. <artifactId>odps-sdk-udf</artifactId>
  18. <version>${sdk.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.aliyun.odps</groupId>
  22. <artifactId>odps-udf-local</artifactId>
  23. <version>${sdk.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.aliyun.odps</groupId>
  27. <artifactId>odps-sdk-mapred</artifactId>
  28. <version>${sdk.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.aliyun.odps</groupId>
  32. <artifactId>odps-mapred-local</artifactId>
  33. <version>${sdk.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.aliyun.odps</groupId>
  37. <artifactId>odps-sdk-graph</artifactId>
  38. <version>${sdk.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.aliyun.odps</groupId>
  42. <artifactId>odps-graph-local</artifactId>
  43. <version>${sdk.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <version>4.12</version>
  49. </dependency>
  50. </dependencies>
  51. <properties>
  52. <sdk.version>0.35.5-public</sdk.version>
  53. <maven.compiler.source>1.8</maven.compiler.source>
  54. <maven.compiler.target>1.8</maven.compiler.target>
  55. </properties>
  56. </project>