pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.springframework.samples.service.service</groupId>
  4. <artifactId>SIGINFO_MAP</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <packaging>war</packaging>
  7. <properties>
  8. <!-- Generic properties -->
  9. <java.version>1.7</java.version>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  12. <maven.compiler.source>1.7</maven.compiler.source>
  13. <maven.compiler.target>1.7</maven.compiler.target>
  14. <!-- Web -->
  15. <jsp.version>2.2</jsp.version>
  16. <jstl.version>1.2</jstl.version>
  17. <servlet.version>2.5</servlet.version>
  18. <!-- Spring -->
  19. <spring-framework.version>4.1.7.RELEASE</spring-framework.version>
  20. <!-- Hibernate / JPA -->
  21. <hibernate.version>4.2.1.Final</hibernate.version>
  22. <!-- Logging -->
  23. <logback.version>1.0.13</logback.version>
  24. <slf4j.version>1.7.5</slf4j.version>
  25. <!-- Test -->
  26. <junit.version>4.11</junit.version>
  27. </properties>
  28. <repositories>
  29. <repository>
  30. <id>Atlassian 3rdParty Repository</id>
  31. <url>https://packages.atlassian.com/maven-3rdparty/</url>
  32. </repository>
  33. <repository>
  34. <id>Spring Plugins</id>
  35. <url>https://repo.spring.io/plugins-release/</url>
  36. </repository>
  37. <repository>
  38. <id>oracle</id>
  39. <name>ORACLE JDBC Repository</name>
  40. <url>https://maven.atlassian.com/3rdparty/</url>
  41. </repository>
  42. </repositories>
  43. <dependencies>
  44. <!-- Spring MVC -->
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-webmvc</artifactId>
  48. <version>${spring-framework.version}</version>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/org.springframework/spring-websocket -->
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-websocket</artifactId>
  54. <version>${spring-framework.version}</version>
  55. </dependency>
  56. <!-- Other Web dependencies -->
  57. <dependency>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>jstl</artifactId>
  60. <version>${jstl.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>javax.servlet</groupId>
  64. <artifactId>servlet-api</artifactId>
  65. <version>${servlet.version}</version>
  66. <scope>provided</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>javax.servlet.jsp</groupId>
  70. <artifactId>jsp-api</artifactId>
  71. <version>${jsp.version}</version>
  72. <scope>provided</scope>
  73. </dependency>
  74. <!-- Spring and Transactions -->
  75. <dependency>
  76. <groupId>org.springframework</groupId>
  77. <artifactId>spring-tx</artifactId>
  78. <version>${spring-framework.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.kafka</groupId>
  82. <artifactId>spring-kafka</artifactId>
  83. <version>2.7.6</version>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/org.apache.kafka/kafka-clients -->
  86. <dependency>
  87. <groupId>org.apache.kafka</groupId>
  88. <artifactId>kafka-clients</artifactId>
  89. <version>2.7.2</version>
  90. </dependency>
  91. <!-- Logging with SLF4J & LogBack -->
  92. <dependency>
  93. <groupId>org.slf4j</groupId>
  94. <artifactId>slf4j-api</artifactId>
  95. <version>${slf4j.version}</version>
  96. <scope>compile</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>ch.qos.logback</groupId>
  100. <artifactId>logback-classic</artifactId>
  101. <version>${logback.version}</version>
  102. <scope>runtime</scope>
  103. </dependency>
  104. <!-- Hibernate -->
  105. <dependency>
  106. <groupId>org.hibernate</groupId>
  107. <artifactId>hibernate-entitymanager</artifactId>
  108. <version>${hibernate.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.oracle</groupId>
  112. <artifactId>ojdbc6</artifactId>
  113. <version>12.1.0.1-atlassian-hosted</version>
  114. </dependency>
  115. <!-- https://mvnrepository.com/artifact/com.oracle/ojdbc6
  116. <dependency>
  117. <groupId>com.oracle</groupId>
  118. <artifactId>ojdbc6</artifactId>
  119. <version>12.2.0.1</version>
  120. </dependency>
  121. -->
  122. <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
  123. <dependency>
  124. <groupId>org.springframework</groupId>
  125. <artifactId>spring-jdbc</artifactId>
  126. <version>4.0.0.RELEASE</version>
  127. </dependency>
  128. <!-- dbcp jdbc connection pool -->
  129. <dependency>
  130. <groupId>commons-dbcp</groupId>
  131. <artifactId>commons-dbcp</artifactId>
  132. <version>1.4</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.mybatis</groupId>
  136. <artifactId>mybatis</artifactId>
  137. <version>3.2.1</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.mybatis</groupId>
  141. <artifactId>mybatis-spring</artifactId>
  142. <version>1.2.0</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.fasterxml.jackson.core</groupId>
  146. <artifactId>jackson-core</artifactId>
  147. <version>2.4.1</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.fasterxml.jackson.core</groupId>
  151. <artifactId>jackson-databind</artifactId>
  152. <version>2.4.1.1</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.codehaus.jackson</groupId>
  156. <artifactId>jackson-core-asl</artifactId>
  157. <version>1.9.13</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.codehaus.jackson</groupId>
  161. <artifactId>jackson-mapper-asl</artifactId>
  162. <version>1.9.13</version>
  163. </dependency>
  164. <!-- common fileupload -->
  165. <dependency>
  166. <groupId>commons-fileupload</groupId>
  167. <artifactId>commons-fileupload</artifactId>
  168. <version>1.3.2</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>commons-io</groupId>
  172. <artifactId>commons-io</artifactId>
  173. <version>1.4</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.apache.poi</groupId>
  177. <artifactId>poi-ooxml</artifactId>
  178. <version>3.13</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.xmlgraphics</groupId>
  182. <artifactId>batik-codec</artifactId>
  183. <version>1.11</version>
  184. </dependency>
  185. <!-- https://mvnrepository.com/artifact/org.jdom/jdom -->
  186. <dependency>
  187. <groupId>org.jdom</groupId>
  188. <artifactId>jdom</artifactId>
  189. <version>1.1</version>
  190. </dependency>
  191. <!-- Test Artifacts -->
  192. <dependency>
  193. <groupId>org.springframework</groupId>
  194. <artifactId>spring-test</artifactId>
  195. <version>${spring-framework.version}</version>
  196. <scope>test</scope>
  197. </dependency>
  198. <dependency>
  199. <groupId>junit</groupId>
  200. <artifactId>junit</artifactId>
  201. <version>${junit.version}</version>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>io.netty</groupId>
  206. <artifactId>netty-all</artifactId>
  207. <version>4.1.36.Final</version>
  208. </dependency>
  209. <!-- https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket -->
  210. <!-- <dependency>
  211. <groupId>org.java-websocket</groupId>
  212. <artifactId>Java-WebSocket</artifactId>
  213. <version>1.4.0</version>
  214. </dependency> -->
  215. <dependency>
  216. <groupId>javax.websocket</groupId>
  217. <artifactId>javax.websocket-api</artifactId>
  218. <version>1.1</version>
  219. <scope>provided</scope>
  220. </dependency>
  221. <!-- <dependency>
  222. <groupId>org.springframework</groupId>
  223. <artifactId>spring-websocket</artifactId>
  224. <version>4.1.7.RELEASE</version>
  225. </dependency> -->
  226. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure -->
  227. <dependency>
  228. <groupId>org.springframework.boot</groupId>
  229. <artifactId>spring-boot-autoconfigure</artifactId>
  230. <version>1.0.0.RELEASE</version>
  231. </dependency>
  232. </dependencies>
  233. <build>
  234. <plugins>
  235. <plugin>
  236. <artifactId>maven-eclipse-plugin</artifactId>
  237. <version>2.8</version>
  238. <configuration>
  239. <wtpversion>2.0</wtpversion>
  240. <wtpContextName>SIGINFO_MAP</wtpContextName>
  241. </configuration>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-surefire-plugin</artifactId>
  246. <version>2.12.4</version>
  247. <configuration>
  248. <skipTests>true</skipTests>
  249. </configuration>
  250. </plugin>
  251. </plugins>
  252. </build>
  253. </project>