pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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-e2e</artifactId>
  24. <version>${revision}</version>
  25. </parent>
  26. <artifactId>seatunnel-engine-e2e</artifactId>
  27. <packaging>pom</packaging>
  28. <name>SeaTunnel : E2E : Engine :</name>
  29. <modules>
  30. <module>connector-seatunnel-e2e-base</module>
  31. <module>connector-console-seatunnel-e2e</module>
  32. </modules>
  33. <properties>
  34. <!-- SeaTunnel Engine use -->
  35. <hazelcast.version>5.1</hazelcast.version>
  36. </properties>
  37. <dependencies>
  38. <dependency>
  39. <groupId>com.hazelcast</groupId>
  40. <artifactId>hazelcast</artifactId>
  41. <version>${hazelcast.version}</version>
  42. <classifier>tests</classifier>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.seatunnel</groupId>
  47. <artifactId>seatunnel-e2e-common</artifactId>
  48. <version>${project.version}</version>
  49. <type>test-jar</type>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.seatunnel</groupId>
  54. <artifactId>seatunnel-engine-client</artifactId>
  55. <version>${project.version}</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>org.apache.seatunnel</groupId>
  59. <artifactId>connector-file-local</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>org.apache.seatunnel</groupId>
  63. <artifactId>connector-fake</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.seatunnel</groupId>
  69. <artifactId>seatunnel-engine-server</artifactId>
  70. <version>${project.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.seatunnel</groupId>
  74. <artifactId>seatunnel-starter</artifactId>
  75. <version>${project.version}</version>
  76. <scope>test</scope>
  77. </dependency>
  78. </dependencies>
  79. </project>