Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix pom version
Browse files Browse the repository at this point in the history
lgjpolardbx committed Nov 7, 2024

Verified

This commit was signed with the committer’s verified signature.
1 parent 97171d7 commit 3a18a82
Showing 4 changed files with 20 additions and 25 deletions.
10 changes: 5 additions & 5 deletions polardbx-executor/pom.xml
Original file line number Diff line number Diff line change
@@ -236,11 +236,11 @@
<artifactId>aircompressor</artifactId>
<version>${aircompressor.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.polardbx</groupId>
<artifactId>airlift-all-shade</artifactId>
<version>${airlift.shade.version}</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.alibaba.polardbx</groupId>-->
<!-- <artifactId>airlift-all-shade</artifactId>-->
<!-- <version>${airlift.shade.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
Original file line number Diff line number Diff line change
@@ -23,9 +23,9 @@
import com.google.common.base.Preconditions;
import com.google.common.io.BaseEncoding;
import com.mysql.jdbc.StringUtils;
import com.mysql.jdbc.ZeroDate;
import com.mysql.jdbc.ZeroTime;
import com.mysql.jdbc.ZeroTimestamp;
import com.alibaba.polardbx.common.jdbc.ZeroDate;
import com.alibaba.polardbx.common.jdbc.ZeroTime;
import com.alibaba.polardbx.common.jdbc.ZeroTimestamp;
import com.alibaba.polardbx.common.exception.TddlNestableRuntimeException;
import com.alibaba.polardbx.common.jdbc.ParameterContext;
import com.alibaba.polardbx.common.jdbc.ParameterMethod;
21 changes: 5 additions & 16 deletions polardbx-test/pom.xml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
<artifactId>polardbx-test</artifactId>

<properties>
<mysql_connector_v5>5.1.40.12</mysql_connector_v5>
<mysql_connector_v5>5.1.49</mysql_connector_v5>
<mysql_connector_v8>8.0.26</mysql_connector_v8>
<polardbx_connector>1.4.0-SNAPSHOT</polardbx_connector>
<mvn_parallel>none</mvn_parallel>
@@ -40,12 +40,6 @@
<artifactId>jcip-annotations</artifactId>
<version>${jcip.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.external</groupId>
<artifactId>test.junit.hamcrest</artifactId>
<version>${test.junit.hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>polardbx-optimizer</artifactId>
@@ -95,20 +89,15 @@
<version>${mysql_connector_v5}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.aliyun</groupId>
<artifactId>polardbx-java-connector</artifactId>
<version>${polardbx_connector}</version>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</exclusion>
</exclusions>
</dependency>



<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -142,7 +142,7 @@
<jackson-mapper-asl.version>1.9.13</jackson-mapper-asl.version>
<dtafEx.version>0.0.2-SNAPSHOT</dtafEx.version>
<ddl-parser.version>1.0.2</ddl-parser.version>
<test.junit.hamcrest.version>1.1</test.junit.hamcrest.version>
<hamcrest.version>2.2</hamcrest.version>
<sshtester.version>0.2.8</sshtester.version>
<xml-apis.version>1.4.01</xml-apis.version>
<jetty.version>9.4.20.v20190813</jetty.version>
@@ -483,6 +483,12 @@
<version>${mockito.verison}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.apache.arrow</groupId>-->
<!-- <artifactId>arrow-vector</artifactId>-->

0 comments on commit 3a18a82

Please sign in to comment.