You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Santiago Álvarez Martínez <sa...@hotmail.com> on 2010/08/04 21:23:51 UTC

Re: "package org.postgresql.util does not exist" compilation problem‏


Hi again Ognjen:

I've just discovered where my error was.

Some lines before adding my PostgreSQL package dependency, I had this another one:

        <dependency>
            <groupId>${jdbcDriver.groupId}</groupId>
            <artifactId>${jdbcDriver.artifactId}</artifactId>
            <version>${jdbcDriver.version}</version>
            <scope>test</scope>
        </dependency>

And that scope parameter, made Maven ignore the dependency until the test phase...

Once removed, everything works fine.

Thank you very much for your time.

Santiago.