Added by jgarnett, last edited by jgarnett on Nov 20, 2006  (view change)

Labels:

Enter labels to add to this page:
Wait Image 
Looking for a label? Just start typing.

There are repositories of jars required by GeoTools2 stored online. You can browse them online at:

Maven 1

You may also want to look at/use the main maven repository at:

If a module you are developing needs a third party jar to operate then this is the place to put it. The naming convention is:

  • groupId/jars/artifactId-version.jar
Maven 2

You may also want to look at/use the main maven repository at:

If a module you are developing needs a third party jar to operate then this is the place to put it. The naming convention is:

  • groupId/artifactId/version/artifactId-version.jar

The groupId usually corresponds to the name of the project and the artifactId corresponds to the jar name. In many cases, there is only one artifact within a group and so they may be the same.

Reducing internet downloads

To set things up so you can have a team of developers, and not have them all hammer the internet please do the following:

  1. Set up a local maven repository on a network share (e.g. R:/m2/repository below)
  2. ask the developers to set up a settings.xml file describing this as a mirror of iBliblio
  3. Enjoy

Here is the settings.xml file for your teams HOME/.m2/ directory

settings.xml
<settings>
  <mirrors>
    <mirror>
      <id>mirror.repo</id>
      <name>mirror of Ibiblio/</name>
      <url>file://R:/m2/repository</url>
      <mirrorOf>ibiblio</mirrorOf>
    </mirror>
  </mirrors>
</settings>

Related links