Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2017
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.73 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>com.example</groupId>
  7. <artifactId>demo</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10.  
  11. <name>CIS</name>
  12. <description>CIS Application</description>
  13.  
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>1.5.2.RELEASE</version>
  18. </parent>
  19.  
  20. <properties>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <java.version>1.8</java.version>
  23. </properties>
  24.  
  25. <dependencies>
  26.  
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-jdbc</artifactId>
  30. </dependency>
  31.  
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-jpa</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45.  
  46. <dependency>
  47. <groupId>org.hibernate</groupId>
  48. <artifactId>hibernate-entitymanager</artifactId>
  49. </dependency>
  50.  
  51. <dependency>
  52. <groupId>org.postgresql</groupId>
  53. <artifactId>postgresql</artifactId>
  54. <version>9.4-1206-jdbc42</version>
  55. </dependency>
  56.  
  57. <dependency>
  58. <groupId>junit</groupId>
  59. <artifactId>junit</artifactId>
  60. <version>4.12</version>
  61. <scope>test</scope>
  62. </dependency>
  63.  
  64. <!-- for Spring Boot 1.4 test -->
  65. <dependency>
  66. <groupId>org.springframework</groupId>
  67. <artifactId>spring-test</artifactId>
  68. <version>4.3.7.RELEASE</version>
  69. <scope>test</scope>
  70. </dependency>
  71.  
  72. <!-- for Spring Boot 1.4 test -->
  73. <dependency>
  74. <groupId>org.apache.httpcomponents</groupId>
  75. <artifactId>httpclient</artifactId>
  76. <version>4.3.3</version>
  77. </dependency>
  78.  
  79. <dependency>
  80. <groupId>xom</groupId>
  81. <artifactId>xom</artifactId>
  82. <version>1.2.5</version>
  83. </dependency>
  84.  
  85. <dependency>
  86. <groupId>commons-io</groupId>
  87. <artifactId>commons-io</artifactId>
  88. <version>2.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.commons</groupId>
  92. <artifactId>commons-lang3</artifactId>
  93. <version>3.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-math</artifactId>
  98. <version>2.2</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.sun.xml.bind</groupId>
  102. <artifactId>jaxb-impl</artifactId>
  103. <version>2.2.11</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.jvnet.ogc</groupId>
  107. <artifactId>wcs-v_1_1_0-schema</artifactId>
  108. <version>1.1.0</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.jvnet.ogc</groupId>
  112. <artifactId>ows-v_1_0_0-schema</artifactId>
  113. <version>1.0.3</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>eu.agrosense.client</groupId>
  117. <artifactId>lib-geotools</artifactId>
  118. <version>10.3-NB80</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.eaio.uuid</groupId>
  122. <artifactId>uuid</artifactId>
  123. <version>3.2</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>joda-time</groupId>
  127. <artifactId>joda-time</artifactId>
  128. <version>2.7</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.rasdaman</groupId>
  132. <artifactId>rasj</artifactId>
  133. <version>9.4.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-devtools</artifactId>
  138. <optional>true</optional>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.fasterxml.jackson.dataformat</groupId>
  142. <artifactId>jackson-dataformat-xml</artifactId>
  143. <version>2.8.7</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.fasterxml.jackson.core</groupId>
  147. <artifactId>jackson-annotations</artifactId>
  148. <version>2.8.7</version>
  149. </dependency>
  150. </dependencies>
  151.  
  152. <build>
  153. <plugins>
  154. <plugin>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-maven-plugin</artifactId>
  157. </plugin>
  158. <plugin>
  159. <groupId>org.apache.maven.plugins</groupId>
  160. <artifactId>maven-surefire-plugin</artifactId>
  161. <version>2.12.4</version>
  162. <configuration>
  163. <skipTests>true</skipTests>
  164. </configuration>
  165. </plugin>
  166. </plugins>
  167. </build>
  168.  
  169.  
  170. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement