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:
|
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:
|
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:
- Set up a local maven repository on a network share (e.g. R:/m2/repository below)
- ask the developers to set up a settings.xml file describing this as a mirror of iBliblio
- Enjoy
Here is the settings.xml file for your teams HOME/.m2/ directory
<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
- [GeoTools:Using the SNAPSHOT releases]
- Maven 2 Wiki