Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nineinchnick committed Oct 5, 2023
1 parent 62ac604 commit 785ca14
Showing 1 changed file with 86 additions and 101 deletions.
187 changes: 86 additions & 101 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,38 +1,19 @@
<?xml version="1.0"?>
<!--
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>pl.net.was</groupId>
<artifactId>trino-git</artifactId>
<description>Trino git Connector</description>
<version>0.56-SNAPSHOT</version>
<packaging>trino-plugin</packaging>

<scm>
<developerConnection>scm:git:https://github.com/nineinchnick/trino-git.git</developerConnection>
<tag>HEAD</tag>
</scm>

<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>145</version>
<version>147</version>
</parent>

<groupId>pl.net.was</groupId>
<artifactId>trino-git</artifactId>
<version>0.56-SNAPSHOT</version>
<packaging>trino-plugin</packaging>
<description>Trino git Connector</description>

<licenses>
<license>
<name>Apache License 2.0</name>
Expand All @@ -41,6 +22,19 @@
</license>
</licenses>

<scm>
<developerConnection>scm:git:https://github.com/nineinchnick/trino-git.git</developerConnection>
<tag>HEAD</tag>
</scm>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub nineinchnick Apache Maven Packages</name>
<url>https://maven.pkg.github.com/nineinchnick/trino-git</url>
</repository>
</distributionManagement>

<properties>
<project.build.targetJdk>17</project.build.targetJdk>
<air.java.version>17.0.6</air.java.version>
Expand All @@ -53,7 +47,7 @@
<air.check.fail-checkstyle>true</air.check.fail-checkstyle>
<air.check.skip-checkstyle>false</air.check.skip-checkstyle>

<dep.trino.version>427</dep.trino.version>
<dep.trino.version>428</dep.trino.version>
<dep.airlift.version>235</dep.airlift.version>
<dep.slice.version>2.2</dep.slice.version>
<dep.opentelemetry.version>1.30.1</dep.opentelemetry.version>
Expand All @@ -74,14 +68,6 @@
<project.scm.id>github</project.scm.id>
</properties>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub nineinchnick Apache Maven Packages</name>
<url>https://maven.pkg.github.com/nineinchnick/trino-git</url>
</repository>
</distributionManagement>

<dependencyManagement>
<dependencies>
<dependency>
Expand All @@ -95,6 +81,25 @@
</dependencyManagement>

<dependencies>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${dep.jackson.version}</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${dep.guava.version}</version>
</dependency>

<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${dep.guice.version}</version>
</dependency>

<dependency>
<groupId>io.airlift</groupId>
<artifactId>bootstrap</artifactId>
Expand All @@ -114,17 +119,21 @@
</dependency>

<dependency>
<groupId>io.airlift</groupId>
<artifactId>log</artifactId>
<version>${dep.airlift.version}</version>
<scope>runtime</scope>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>

<dependency>
<groupId>io.airlift</groupId>
<artifactId>log-manager</artifactId>
<version>${dep.airlift.version}</version>
<scope>runtime</scope>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>6.7.0.202309050840-r</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${dep.jackson.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
Expand All @@ -147,15 +156,10 @@
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${dep.guava.version}</version>
</dependency>

<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${dep.guice.version}</version>
<groupId>io.trino</groupId>
<artifactId>trino-spi</artifactId>
<version>${dep.trino.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
Expand All @@ -166,85 +170,66 @@
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${dep.jackson.version}</version>
</dependency>

<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>6.7.0.202309050840-r</version>
<groupId>io.airlift</groupId>
<artifactId>log</artifactId>
<version>${dep.airlift.version}</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<groupId>io.airlift</groupId>
<artifactId>log-manager</artifactId>
<version>${dep.airlift.version}</version>
<scope>runtime</scope>
</dependency>

<!-- Presto SPI -->
<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-spi</artifactId>
<scope>provided</scope>
<version>${dep.trino.version}</version>
<groupId>io.airlift</groupId>
<artifactId>units</artifactId>
<version>1.10</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${dep.jackson.version}</version>
<scope>provided</scope>
<groupId>io.airlift</groupId>
<artifactId>testing</artifactId>
<version>${dep.airlift.version}</version>
<scope>test</scope>
</dependency>

<!-- for testing -->
<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-main</artifactId>
<scope>test</scope>
<version>${dep.trino.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-testing</artifactId>
<scope>test</scope>
<artifactId>trino-memory</artifactId>
<version>${dep.trino.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-tpch</artifactId>
<scope>test</scope>
<artifactId>trino-testing</artifactId>
<version>${dep.trino.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-memory</artifactId>
<scope>test</scope>
<artifactId>trino-tpch</artifactId>
<version>${dep.trino.version}</version>
</dependency>

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
<version>${dep.testng.version}</version>
</dependency>

<dependency>
<groupId>io.airlift</groupId>
<artifactId>testing</artifactId>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${dep.assertj-core.version}</version>
<scope>test</scope>
<version>${dep.airlift.version}</version>
</dependency>

<dependency>
<groupId>io.airlift</groupId>
<artifactId>units</artifactId>
<version>1.10</version>
<scope>runtime</scope>
</dependency>

<dependency>
Expand All @@ -255,9 +240,9 @@
</dependency>

<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${dep.assertj-core.version}</version>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${dep.testng.version}</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -302,8 +287,8 @@
<plugin>
<groupId>ca.vanzyl.provisio.maven.plugins</groupId>
<artifactId>provisio-maven-plugin</artifactId>
<extensions>true</extensions>
<version>1.0.20</version>
<extensions>true</extensions>
</plugin>

<plugin>
Expand Down

0 comments on commit 785ca14

Please sign in to comment.