Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nineinchnick committed Oct 18, 2024
1 parent be829db commit a5c702d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ docker run \
--name trino-git \
-e REPO_URL=https://github.com/nineinchnick/trino-rest.git \
-p 8080:8080 \
nineinchnick/trino-git:0.86
nineinchnick/trino-git:0.87
```

Then use your favourite SQL client to connect to Trino running at http://localhost:8080

# Usage

Download one of the ZIP packages, unzip it and copy the `trino-git-0.86` directory to the plugin directory on every node in your Trino cluster.
Download one of the ZIP packages, unzip it and copy the `trino-git-0.87` directory to the plugin directory on every node in your Trino cluster.
Create a `github.properties` file in your Trino catalog directory and point to a remote repo.
You can also use a path to a local repo if it's available on every worker node.

Expand Down Expand Up @@ -97,12 +97,12 @@ docker run \
-p 8080:8080 \
--name trino \
-d \
trinodb/trino:460
trinodb/trino:462
```

Connect to that server using:
```bash
docker run -it --rm --link trino trinodb/trino:460 trino --server trino:8080 --catalog git --schema default
docker run -it --rm --link trino trinodb/trino:462 trino --server trino:8080 --catalog git --schema default
```

# References
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>186</version>
<version>187</version>
</parent>

<groupId>pl.net.was</groupId>
Expand Down Expand Up @@ -36,8 +36,8 @@
</distributionManagement>

<properties>
<project.build.targetJdk>22</project.build.targetJdk>
<air.java.version>22.0.1</air.java.version>
<project.build.targetJdk>23</project.build.targetJdk>
<air.java.version>23</air.java.version>

<air.main.basedir>${project.basedir}</air.main.basedir>

Expand All @@ -48,11 +48,11 @@
<air.check.skip-checkstyle>false</air.check.skip-checkstyle>
<air.build.jvmsize>4g</air.build.jvmsize>

<dep.trino.version>461</dep.trino.version>
<dep.airlift.version>274</dep.airlift.version>
<dep.trino.version>462</dep.trino.version>
<dep.airlift.version>275</dep.airlift.version>
<dep.slice.version>2.3</dep.slice.version>
<dep.opentelemetry.version>1.42.1</dep.opentelemetry.version>
<dep.opentelemetry-instrumentation.version>2.8.0</dep.opentelemetry-instrumentation.version>
<dep.opentelemetry.version>1.43.0</dep.opentelemetry.version>
<dep.opentelemetry-instrumentation.version>2.9.0</dep.opentelemetry-instrumentation.version>
<dep.packaging.version>${dep.airlift.version}</dep.packaging.version>
<dep.guava.version>33.3.1-jre</dep.guava.version>
<dep.guice.version>7.0.0</dep.guice.version>
Expand All @@ -62,7 +62,7 @@
<dep.junit.version>5.11.2</dep.junit.version>
<dep.slf4j.version>2.0.16</dep.slf4j.version>
<dep.assertj-core.version>3.26.3</dep.assertj-core.version>
<dep.logback.version>1.5.9</dep.logback.version>
<dep.logback.version>1.5.11</dep.logback.version>
<dep.plugin.surefire.version>3.2.5</dep.plugin.surefire.version>

<air.javadoc.lint>-missing</air.javadoc.lint>
Expand Down Expand Up @@ -293,7 +293,7 @@
<plugin>
<groupId>ca.vanzyl.provisio.maven.plugins</groupId>
<artifactId>provisio-maven-plugin</artifactId>
<version>1.0.25</version>
<version>1.1.1</version>
<extensions>true</extensions>
</plugin>

Expand Down

0 comments on commit a5c702d

Please sign in to comment.