pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>org.apache.seatunnel</groupId>
  23. <artifactId>seatunnel-engine-e2e</artifactId>
  24. <version>${revision}</version>
  25. </parent>
  26. <artifactId>connector-seatunnel-e2e-base</artifactId>
  27. <name>SeaTunnel : E2E : Engine : Base</name>
  28. <properties>
  29. <maven-jar-plugin.version>2.4</maven-jar-plugin.version>
  30. <hadoop-aliyun.version>3.0.0</hadoop-aliyun.version>
  31. <netty-buffer.version>4.1.89.Final</netty-buffer.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.apache.seatunnel</groupId>
  36. <artifactId>connector-fake</artifactId>
  37. <version>${project.version}</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.seatunnel</groupId>
  42. <artifactId>connector-console</artifactId>
  43. <version>${project.version}</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.seatunnel</groupId>
  48. <artifactId>connector-file-local</artifactId>
  49. <version>${project.version}</version>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.seatunnel</groupId>
  54. <artifactId>imap-storage-file</artifactId>
  55. <version>${project.version}</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.seatunnel</groupId>
  60. <artifactId>seatunnel-hadoop3-3.1.4-uber</artifactId>
  61. <version>${project.version}</version>
  62. <classifier>optional</classifier>
  63. <scope>test</scope>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.apache.avro</groupId>
  67. <artifactId>avro</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.hadoop</groupId>
  73. <artifactId>hadoop-aliyun</artifactId>
  74. <version>${hadoop-aliyun.version}</version>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.aliyun.oss</groupId>
  79. <artifactId>aliyun-sdk-oss</artifactId>
  80. <version>2.8.3</version>
  81. <scope>test</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>io.netty</groupId>
  85. <artifactId>netty-buffer</artifactId>
  86. <version>${netty-buffer.version}</version>
  87. <scope>test</scope>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-jar-plugin</artifactId>
  95. <version>${maven-jar-plugin.version}</version>
  96. <configuration>
  97. <skip>false</skip>
  98. </configuration>
  99. <executions>
  100. <execution>
  101. <goals>
  102. <goal>test-jar</goal>
  103. </goals>
  104. </execution>
  105. </executions>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>