-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
57 lines (51 loc) · 2.24 KB
/
Copy pathpom.xml
File metadata and controls
57 lines (51 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.tapdata</groupId>
<artifactId>tapdata-it</artifactId>
<packaging>pom</packaging>
<name>TapData Integration Testing</name>
<url>https://tapdata.io</url>
<version>1.0-SNAPSHOT</version>
<properties>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- PDK API 版本:按 2.0.5 编译(mysql-connector 产品线版本),
仅调用 2.0.5 已有的 API,保证运行时兼容任意更高版本环境 -->
<tapdata.pdk.api.version>2.0.5-SNAPSHOT</tapdata.pdk.api.version>
<junit.version>5.9.2</junit.version>
<jackson.version>2.18.3</jackson.version>
</properties>
<!-- Nexus 公有云 maven-snapshots 仓库:tapdata-pdk-api、tapdata-api 等 SNAPSHOT
制品发布于此,公网可达且无需认证;Release 依赖(jackson、junit 等)从 Central 默认解析 -->
<repositories>
<repository>
<id>nexus-tapdata-net</id>
<name>Nexus Snapshot Repository</name>
<url>https://nexus.tapdata.net/repository/maven-snapshots/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<modules>
<module>tapdata-it-common</module>
<module>tapdata-connector-it</module>
</modules>
<distributionManagement>
<repository>
<id>nexus-tapdata-net</id>
<name>Nexus Release Repository</name>
<url>https://nexus.tapdata.net/repository/maven-public/</url>
</repository>
<snapshotRepository>
<id>nexus-tapdata-net</id>
<name>Nexus Snapshot Repository</name>
<url>https://nexus.tapdata.net/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>