[build] Bump testcontainers version and polish dependency

pull/2751/head
gongzhongqiang 1 year ago committed by Leonard Xu
parent ce62ecd23e
commit 721c6d9608

@ -110,7 +110,7 @@ under the License.
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<version>${json-path.version}</version>
<scope>test</scope>
</dependency>

@ -155,14 +155,14 @@ under the License.
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<version>${json-path.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
<version>${commons-lang3.version}</version>
</dependency>
</dependencies>

@ -93,7 +93,7 @@ under the License.
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.78</version>
<version>1.2.83</version>
<scope>test</scope>
</dependency>
@ -178,14 +178,14 @@ under the License.
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<version>${json-path.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
<version>${commons-lang3.version}</version>
</dependency>
</dependencies>

@ -21,6 +21,10 @@ under the License.
<groupId>com.ververica</groupId>
<version>2.4-SNAPSHOT</version>
</parent>
<properties>
<!-- Because of oceanbase docker image can not expose port quickly, so we need to specify testcontainers version to 1.15.3 -->
<jdbc.version>1.15.3</jdbc.version>
</properties>
<modelVersion>4.0.0</modelVersion>
<artifactId>flink-connector-oceanbase-cdc</artifactId>
@ -138,8 +142,8 @@ under the License.
<!-- test dependencies on TestContainers -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mssqlserver</artifactId>
<version>${testcontainers.version}</version>
<artifactId>jdbc</artifactId>
<version>${jdbc.version}</version>
<scope>test</scope>
</dependency>

@ -159,7 +159,7 @@ under the License.
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<version>${json-path.version}</version>
<scope>test</scope>
</dependency>

@ -155,7 +155,7 @@ under the License.
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<version>${json-path.version}</version>
<scope>test</scope>
</dependency>

@ -75,29 +75,29 @@ under the License.
</distributionManagement>
<properties>
<flink.version>1.17.0</flink.version>
<debezium.version>1.9.7.Final</debezium.version>
<tikv.version>3.2.0</tikv.version>
<geometry.version>2.2.0</geometry.version>
<!-- OracleE2eITCase will report "container cannot be accessed" error when running in Azure Pipeline with 1.16.1 testconainters.
This might be a conflicts with "wnameless/oracle-xe-11g-r2" and 1.16 testcontainers.
We may need to upgrade our Oracle base image to "gvenzl/oracle-xe" which is the default image of 1.16 testcontainers.
See more https://github.com/testcontainers/testcontainers-java/issues/4297. -->
<testcontainers.version>1.15.3</testcontainers.version>
<java.version>1.8</java.version>
<scala.binary.version>2.12</scala.binary.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Enforce single fork execution due to heavy mini cluster use in the tests -->
<flink.forkCount>1</flink.forkCount>
<flink.reuseForks>true</flink.reuseForks>
<!-- dependencies versions -->
<flink.version>1.17.1</flink.version>
<debezium.version>1.9.7.Final</debezium.version>
<tikv.version>3.2.0</tikv.version>
<geometry.version>2.2.0</geometry.version>
<testcontainers.version>1.18.3</testcontainers.version>
<hamcrest.version>1.3</hamcrest.version>
<version.awaitility>4.0.1</version.awaitility>
<version.awaitility>4.2.0</version.awaitility>
<slf4j.version>1.7.15</slf4j.version>
<log4j.version>2.17.1</log4j.version>
<spotless.version>2.4.2</spotless.version>
<oblogclient.version>1.1.0</oblogclient.version>
<!-- Enforce single fork execution due to heavy mini cluster use in the tests -->
<flink.forkCount>1</flink.forkCount>
<flink.reuseForks>true</flink.reuseForks>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<commons-lang3.version>3.12.0</commons-lang3.version>
<json-path.version>2.7.0</json-path.version>
</properties>
<dependencies>

Loading…
Cancel
Save