gpt4 book ai didi

java - 找不到 Postgres JDBC maven 依赖项

转载 作者:搜寻专家 更新时间:2023-10-31 08:09:44 24 4
gpt4 key购买 nike

我想在我的 Java 应用程序中包含 Postgres JDBC 驱动程序,因此我将其添加为 Maven 依赖项。我选择了 this list 中的最后一个版本,令我惊讶的是,它恰好由 Atlassian 托管。现在我收到此错误:

Missing artifact postgresql:postgresql:jar:9.4.1208-jdbc42-atlassian-hosted

我还尝试了一个不是由 Atlassian 托管的旧版本,但得到了同样的错误!是否有其他合适的地方可以从中取出 jar ?

这是我当前的 pom.xml:

<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>PostgresListener</groupId>
<artifactId>PostgresListener</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/postgresql/postgresql -->
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1208-jdbc42-atlassian-hosted</version>
</dependency>
</dependencies>

最佳答案

pom.xml 文件中到底有什么?

应该是这样的:

<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1212</version>
</dependency>

确保您使用 org.postgresql 作为 groupId,而不是 postgresql

关于java - 找不到 Postgres JDBC maven 依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41737060/

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