Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to develop a Java application with Maven while using Hibernate with Postgresql database for persistence. I don't understand how I'm supposed to connect the Postgresql drivers to my application. I get that you add dependencies in Maven's pom.xml file, which finds jars from a remote repository, but what about other jars?

share|improve this question
2  
PostgreSQL drivers jars are in Maven central repository: search.maven.org/… – madth3 Nov 5 '12 at 23:41
Add that as answer, I'll accept it once I can. I was using wrong version. Thanks. – Sotirios Delimanolis Nov 5 '12 at 23:43

2 Answers

up vote 3 down vote accepted

PostgreSQL drivers jars are included in Central Repository of Maven:

Just use:

    <dependency>
        <groupId>postgresql</groupId>
        <artifactId>postgresql</artifactId>
        <version>VERSION</version>
    </dependency>

with the appropiate VERSION.

share|improve this answer

You should add these lines into your pom.xml file.

<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/maven-v4_0_0.xsd">

    <name>Your project name.</name>
    <dependencies>
        <dependency>
            <groupId>postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>9.1-901.jdbc4</version>
        </dependency>
    </dependencies>
</project>

You can get the code for the dependency (as well as any other dependency) from maven's central repository http://mvnrepository.com/artifact/postgresql/postgresql/9.1-901.jdbc4

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.