Advertisement
Guest User

Untitled

a guest
Feb 18th, 2011
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <properties>
  5. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  6. <geotools.version>2.6.5</geotools.version>
  7. </properties>
  8. <dependencies>
  9. <dependency>
  10. <groupId>org.geotools</groupId>
  11. <artifactId>gt-main</artifactId>
  12. <version>${geotools.version}</version>
  13. </dependency>
  14. <dependency>
  15. <groupId>org.geotools</groupId>
  16. <artifactId>gt-referencing</artifactId>
  17. <version>${geotools.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.geotools</groupId>
  21. <artifactId>gt-swing</artifactId>
  22. <version>${geotools.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.geotools</groupId>
  26. <artifactId>gt-shapefile</artifactId>
  27. <version>${geotools.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.geotools</groupId>
  31. <artifactId>gt-feature-pregeneralized</artifactId>
  32. <version>${geotools.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.geotools</groupId>
  36. <artifactId>gt-epsg-hsql</artifactId>
  37. <version>${geotools.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.xerial</groupId>
  41. <artifactId>sqlite-jdbc</artifactId>
  42. <version>3.6.20</version>
  43. <type>jar</type>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.vividsolutions</groupId>
  48. <artifactId>jts</artifactId>
  49. <version>1.11</version>
  50. <type>jar</type>
  51. <scope>compile</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>javax.media</groupId>
  55. <artifactId>jai_core</artifactId>
  56. <version>1.1.3</version>
  57. <type>jar</type>
  58. <scope>compile</scope>
  59. </dependency>
  60. </dependencies>
  61. <repositories>
  62. <repository>
  63. <id>maven2-repository.dev.java.net</id>
  64. <name>Java.net repository</name>
  65. <url>http://download.java.net/maven/2</url>
  66. </repository>
  67. <repository>
  68. <id>osgeo</id>
  69. <name>Open Source Geospatial Foundation Repository</name>
  70. <url>http://download.osgeo.org/webdav/geotools/</url>
  71. </repository>
  72. </repositories>
  73. <groupId>.....</groupId>
  74. <artifactId>.....</artifactId>
  75. <version>0.0.1-SNAPSHOT</version>
  76. <name>......</name>
  77. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement