哪里可以找到postgres的maven依赖10

时间:2018-04-26 14:58:05

标签: postgresql maven

我将postgreSQL用于带JOOQ的jsf应用程序。我想为我的应用程序升级postgreSQL。我已经将我的windows上的postgreSQL版本从9.5更新到10.现在我想在应用程序中添加一个jar来测试。在this link我只找到直到9.4.x的罐子,而不是42.x系列的开始。

1)postgreSQL 10的jar是什么,我怎么知道/找到它?

2)我当前的应用程序在pom文件中有9.3-1102-jdbc41依赖项。这是否意味着它的postgreSQL 9.3?

此致

1 个答案:

答案 0 :(得分:0)

对于postgreSQL 10,您可以使用以下maven依赖项

<dependency>
        <groupId>org.postgresql</groupId>
        <artifactId>postgresql</artifactId>
        <version>42.2.0</version>
        <scope>runtime</scope>
    </dependency>