gpt4 book ai didi

maven - Redshift JDBC 驱动程序的 Gradle/Maven 依赖项

转载 作者:行者123 更新时间:2023-12-04 02:37:32 24 4
gpt4 key购买 nike

我已经下载了 RedshiftJDBC41-1.1.17.1007.jar 来使用 com.amazon.redshift.jdbc41.Driver对于我正在做的一些 Redshift POC 工作,并且已经手动将它添加到我的类路径中。

我现在想把它合并到我们的构建中,但我似乎找不到一个依赖名称的例子来把它放在我的 build.gradle 中。文件或在 Maven 存储库中找到它。任何提示? (注意,我只是在寻找 redshift jdbc,而不是旧的 postgres-redshift 驱动程序)。

最佳答案

Redshift JDBC 驱动程序现在可以在 maven repo 上使用。看 http://docs.aws.amazon.com/redshift/latest/mgmt/configure-jdbc-connection-with-maven.html

如果链接不起作用,请导航至 Querying a Database -> Connecting to a Cluster Using SQL Client Tools -> Configuring Connections in Amazon Redshift -> Configuring a JDBC Connection
添加 Redshift 存储库

<repositories>
<repository>
<id>redshift</id>
<url>http://redshift-maven-repository.s3-website-us-east-1.amazonaws.com/release</url>
</repository>
</repositories>

然后添加依赖项,例如
<dependency>
<groupId>com.amazon.redshift</groupId>
<artifactId>redshift-jdbc42</artifactId>
<version>1.2.41.1065</version>
</dependency>

但是驱动程序上有很多变体,因此您应该访问该页面以阅读更多信息并选择您需要的一个。

关于maven - Redshift JDBC 驱动程序的 Gradle/Maven 依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32640322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com