/layers-store/pom.xml

http://alageospatialportal.googlecode.com/ · XML · 256 lines · 229 code · 15 blank · 12 comment · 0 complexity · 0fb2d5bc5c38d9dc13d79b0f33f47c19 MD5 · raw file

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.ala.layers</groupId>
  4. <artifactId>layers-store</artifactId>
  5. <packaging>jar</packaging>
  6. <version>1.1-SNAPSHOT</version>
  7. <name>ALA Spatial Layers Store</name>
  8. <url>http://www.ala.org.au</url>
  9. <repositories>
  10. <repository>
  11. <id>osgeo</id>
  12. <name>Open Source Geospatial Foundation Repository</name>
  13. <url>http://download.osgeo.org/webdav/geotools/</url>
  14. </repository>
  15. </repositories>
  16. <!-- AN SCM entry that points to the SVN directory that contains the pom file for the project -->
  17. <scm>
  18. <developerConnection>scm:svn:https://alageospatialportal.googlecode.com/svn/trunk/layers-store/</developerConnection>
  19. </scm>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>2.3.2</version>
  26. <configuration>
  27. <encoding>${project.build.sourceEncoding}</encoding>
  28. <source>1.6</source>
  29. <target>1.6</target>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-resources-plugin</artifactId>
  35. <version>2.5</version>
  36. <configuration>
  37. <encoding>${project.build.sourceEncoding}</encoding>
  38. </configuration>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-assembly-plugin</artifactId>
  43. <configuration>
  44. <descriptors>
  45. <descriptor>src/assembly/assembly.xml</descriptor>
  46. </descriptors>
  47. <archive>
  48. <manifest>
  49. <addClasspath>true</addClasspath>
  50. <classpathPrefix>lib/</classpathPrefix>
  51. <mainClass>org.ala.layers.client.Client</mainClass>
  52. </manifest>
  53. </archive>
  54. </configuration>
  55. <executions>
  56. <execution>
  57. <phase>package</phase>
  58. <goals>
  59. <goal>single</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-release-plugin</artifactId>
  67. <version>2.5</version>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. <distributionManagement>
  72. <downloadUrl>https://maven.ala.org.au/repository</downloadUrl>
  73. <repository>
  74. <uniqueVersion>false</uniqueVersion>
  75. <id>ala-repository</id>
  76. <url>${ala.repository.url}</url>
  77. </repository>
  78. </distributionManagement>
  79. <dependencies>
  80. <!-- Spring Framework -->
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-context</artifactId>
  84. <version>${org.springframework.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework</groupId>
  88. <artifactId>spring-jdbc</artifactId>
  89. <version>${org.springframework.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-orm</artifactId>
  94. <version>${org.springframework.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework</groupId>
  98. <artifactId>spring-oxm</artifactId>
  99. <version>${org.springframework.version}</version>
  100. </dependency>
  101. <!-- Database, Persistance and Connection Pooling -->
  102. <dependency>
  103. <groupId>postgresql</groupId>
  104. <artifactId>postgresql</artifactId>
  105. <version>8.4-701.jdbc4</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>javax.persistence</groupId>
  109. <artifactId>persistence-api</artifactId>
  110. <version>1.0</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>c3p0</groupId>
  114. <artifactId>c3p0</artifactId>
  115. <version>0.9.1.2</version>
  116. </dependency>
  117. <!-- ANDS PIDS -->
  118. <dependency>
  119. <groupId>net.sourceforge.andspidclient</groupId>
  120. <artifactId>ands-pid-client</artifactId>
  121. <version>1.0.07</version>
  122. </dependency>
  123. <!-- JSON Mappers -->
  124. <dependency>
  125. <groupId>org.codehaus.jackson</groupId>
  126. <artifactId>jackson-mapper-asl</artifactId>
  127. <version>1.8.5</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>net.sf.json-lib</groupId>
  131. <artifactId>json-lib</artifactId>
  132. <version>2.4</version>
  133. <classifier>jdk15</classifier>
  134. </dependency>
  135. <!-- logging -->
  136. <dependency>
  137. <groupId>log4j</groupId>
  138. <artifactId>log4j</artifactId>
  139. <version>1.2.16</version>
  140. </dependency>
  141. <!-- junit -->
  142. <dependency>
  143. <groupId>junit</groupId>
  144. <artifactId>junit</artifactId>
  145. <version>4.9</version>
  146. <scope>test</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>net.sf.opencsv</groupId>
  150. <artifactId>opencsv</artifactId>
  151. <version>2.3</version>
  152. <type>jar</type>
  153. </dependency>
  154. <!-- geotools -->
  155. <dependency>
  156. <groupId>org.geotools</groupId>
  157. <artifactId>gt-main</artifactId>
  158. <version>2.7.3</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.geotools</groupId>
  162. <artifactId>gt-api</artifactId>
  163. <version>2.7.3</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.geotools</groupId>
  167. <artifactId>gt-shapefile</artifactId>
  168. <version>2.7.3</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.opengis</groupId>
  172. <artifactId>geoapi</artifactId>
  173. <version>2.3-M1</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.opengis</groupId>
  177. <artifactId>geoapi-pending</artifactId>
  178. <version>2.3-M1</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.geotools.xsd</groupId>
  182. <artifactId>gt-xsd-kml</artifactId>
  183. <version>2.7.3</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.geotools</groupId>
  187. <artifactId>gt-geojson</artifactId>
  188. <version>2.7.3</version>
  189. </dependency>
  190. <!-- cglib - required for transaction support -->
  191. <dependency>
  192. <groupId>cglib</groupId>
  193. <artifactId>cglib</artifactId>
  194. <version>2.2.2</version>
  195. </dependency>
  196. <!-- Google guava -->
  197. <dependency>
  198. <groupId>com.google.guava</groupId>
  199. <artifactId>guava</artifactId>
  200. <version>14.0.1</version>
  201. </dependency>
  202. <!-- Apache commons IO -->
  203. <dependency>
  204. <groupId>commons-io</groupId>
  205. <artifactId>commons-io</artifactId>
  206. <version>2.4</version>
  207. </dependency>
  208. <!-- Apache commons lang 3 -->
  209. <dependency>
  210. <groupId>org.apache.commons</groupId>
  211. <artifactId>commons-lang3</artifactId>
  212. <version>3.1</version>
  213. </dependency>
  214. </dependencies>
  215. <properties>
  216. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  217. <org.springframework.version>3.0.6.RELEASE</org.springframework.version>
  218. </properties>
  219. <developers>
  220. <developer>
  221. <id>AC</id>
  222. <name>Adam Collins</name>
  223. <email>adam.collins@csiro.au</email>
  224. <organization>CSIRO</organization>
  225. <organizationUrl>http://csiro.au</organizationUrl>
  226. <roles>
  227. <role>Analysis Developer</role>
  228. </roles>
  229. </developer>
  230. <developer>
  231. <id>AR</id>
  232. <name>Ajay Ranipeta</name>
  233. <email>Ajay.Ranipeta@csiro.au</email>
  234. <organization>CSIRO</organization>
  235. <organizationUrl>http://csiro.au</organizationUrl>
  236. <roles>
  237. <role>Software and Analysis Developer</role>
  238. </roles>
  239. </developer>
  240. </developers>
  241. </project>