[Geoserver-devel] Maven 1.0 Dependancies vs Maven 2.0

Hi,

I have a dependancy in Geoserver in the <groupId>ki</groupId> group, but these dependancies are not in http://www.ibiblio.org/maven2/,

Do I download these dependancies from http://www.ibiblio.org/maven/geoserver/ki/jars/ or remove the dependancies..

I noticed that these dependancies are not in geotools?

<dependency>
            <groupId>ki</groupId>
            <artifactId>ki-jzkit-z3950</artifactId>
            <version>X</version>
        </dependency>

Thanks Clint

Clint Lewis a écrit :

I have a dependancy in Geoserver in the <groupId>ki</groupId> group, but these dependancies are not in http://www.ibiblio.org/maven2/,

Do I download these dependancies from http://www.ibiblio.org/maven/geoserver/ki/jars/ or remove the dependancies..

I noticed that these dependancies are not in geotools?

<dependency>
  <groupId>ki</groupId>
  <artifactId>ki-jzkit-z3950</artifactId>
  <version>X</version>
</dependency>

I noticed that http://www.ibiblio.org/maven/geoserver/ki/jars/ is a Maven 1 repository. If you are building with Maven 2, we have a choice:

  - We can upload this dependency in a Maven 2 repository (e.g. http://maven.geotools.fr/repository).
    For now I'm the only one with write access in the above cited directory, but we probably can
    (actually we *should*) give write access to more peoples if we get using this repository more
    extensively.

  - It is also possible to add an existing Maven 1 repository in a Maven 2 project, and teach
    Maven 2 that this repository is using the Maven 1 layout. I don't remember exactly the pom.xml
    syntax for that, but I believe that it is something like <layout>legacy</layout> in the
    <repository> section. The http://maven.apache.org/guides/index.html should tells more.

  Martin.