Skip to content

Commit

Permalink
upgrade some maven dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Armlly committed Mar 3, 2021
1 parent 03e7df0 commit 9fde2de
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 19 deletions.
10 changes: 3 additions & 7 deletions hetu-heuristic-index/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,10 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>1.4.20</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.mapdb</groupId>
Expand All @@ -61,7 +59,6 @@
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.1.7</version>
</dependency>
<dependency>
<artifactId>commons-compress</artifactId>
Expand Down Expand Up @@ -99,7 +96,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.28.2</version>
<version>3.5.13</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -129,7 +126,6 @@
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import io.prestosql.spi.predicate.Range;
import io.prestosql.spi.predicate.SortedRangeSet;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.ArrayUtils;
import org.apache.commons.lang3.ArrayUtils;
import org.mapdb.BTreeMap;
import org.mapdb.DB;
import org.mapdb.DBMaker;
Expand Down
1 change: 0 additions & 1 deletion hetu-opengauss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.5-og1.0.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion hetu-state-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.28.2</version>
<version>3.5.13</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
24 changes: 18 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
<module>presto-jdbc</module>
<module>presto-cli</module>
<module>presto-benchmark-driver</module>
<!-- <module>presto-docs</module>-->
<!-- <module>presto-docs</module>-->
<module>presto-verifier</module>
<module>presto-testing-server-launcher</module>
<module>presto-plugin-toolkit</module>
Expand Down Expand Up @@ -872,6 +872,12 @@
<version>5.1.47</version>
</dependency>

<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>1.4.30</version>
</dependency>

<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
Expand Down Expand Up @@ -1307,6 +1313,12 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>3.1</version>
</dependency>

<dependency>
<groupId>io.prestosql.cassandra</groupId>
<artifactId>cassandra-driver</artifactId>
Expand Down Expand Up @@ -1346,12 +1358,12 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.11</version>
<version>4.4.13</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.9</version>
<version>4.5.11</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
Expand Down Expand Up @@ -1575,9 +1587,9 @@
<version>2.3</version>
<configuration>
<validHeaders>
<item> ${air.main.basedir}/src/main/resource/license/license-header.txt</item>
<item> ${air.main.basedir}/src/main/resource/license/license-header-alternate-2010.txt</item>
<item> ${air.main.basedir}/src/main/resource/license/license-header-alternate-2012.txt</item>
<item>${air.main.basedir}/src/main/resource/license/license-header.txt</item>
<item>${air.main.basedir}/src/main/resource/license/license-header-alternate-2010.txt</item>
<item>${air.main.basedir}/src/main/resource/license/license-header-alternate-2012.txt</item>
</validHeaders>
</configuration>
</plugin>
Expand Down
3 changes: 0 additions & 3 deletions presto-elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>

<exclusions>
<!-- elasticsearch-rest-high-level-client 6.0.0 brings in httpcore 4.4.5 vs (4.4.4) -->
<exclusion>
Expand All @@ -127,7 +125,6 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.5</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 9fde2de

Please sign in to comment.