pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one
  4. ~ or more contributor license agreements. See the NOTICE file
  5. ~ distributed with this work for additional information
  6. ~ regarding copyright ownership. The ASF licenses this file
  7. ~ to you under the Apache License, Version 2.0 (the
  8. ~ "License"); you may not use this file except in compliance
  9. ~ with the License. You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. ~
  20. -->
  21. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  22. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  23. <modelVersion>4.0.0</modelVersion>
  24. <parent>
  25. <groupId>org.apache.seatunnel</groupId>
  26. <artifactId>checkpoint-storage-plugins</artifactId>
  27. <version>${revision}</version>
  28. </parent>
  29. <artifactId>checkpoint-storage-hdfs</artifactId>
  30. <name>SeaTunnel : Engine : Storage : Checkpoint Storage Plugins : HDFS</name>
  31. <properties>
  32. <hadoop-aliyun.version>3.0.0</hadoop-aliyun.version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.apache.seatunnel</groupId>
  37. <artifactId>seatunnel-hadoop3-3.1.4-uber</artifactId>
  38. <version>${project.version}</version>
  39. <classifier>optional</classifier>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.hadoop</groupId>
  44. <artifactId>hadoop-aliyun</artifactId>
  45. <version>${hadoop-aliyun.version}</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-lang3</artifactId>
  51. </dependency>
  52. <!-- hadoop jar -->
  53. <dependency>
  54. <groupId>org.apache.hadoop</groupId>
  55. <artifactId>hadoop-aws</artifactId>
  56. <version>3.1.4</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.amazonaws</groupId>
  61. <artifactId>aws-java-sdk-bundle</artifactId>
  62. <version>1.11.271</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. </dependencies>
  66. </project>