You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Rico Schäpe <sc...@planet.de> on 2004/02/09 10:33:46 UTC

dependency tracking

Hi,

How can I obtain the correct artifactId, version and url of an jar file, so that the jar file will copied correctly to the local repository ?

For example:

I use the JDBC driver of the FireBird database:
Firebird Class 4 JCA-JDBC Driver "Jaybird" V1.5 Beta 3

- the download path is as follows:
http://prdownloads.sourceforge.net/firebird/FirebirdSQL-1.5.0Beta3JDK_1.4.zip
- the jar file is part of that downloaded zip file: "firebirdsql-full.jar"

I tried following in my project file:

   <dependency>
      <groupId>firebird</groupId>
      <artifactId>firebird</artifactId>
      <version>v1.5b3</version>
      <url>http://firebird.sourceforge.net/</url>
<!--      <url>http://prdownloads.sourceforge.net/firebird/</url> -->
   </dependency>

But nothing works successful.

Who can help

Thanks in forward
Rico