Skip to content

Commit

Permalink
fix pom version
Browse files Browse the repository at this point in the history
  • Loading branch information
lgjpolardbx committed Nov 7, 2024
1 parent 97171d7 commit d19f32f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 26 deletions.
10 changes: 5 additions & 5 deletions polardbx-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
21 changes: 5 additions & 16 deletions polardbx-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import static com.alibaba.polardbx.qatest.validator.DataValidator.resultSetContentSameAssert;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.core.Is.is;
import static org.hamcrest.number.OrderingComparisons.greaterThan;
import static org.hamcrest.number.OrderingComparison.greaterThan;

/**
* @author chenmo.cm
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>-->
Expand Down

0 comments on commit d19f32f

Please sign in to comment.