Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.50 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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>targetbrain</groupId>
  5. <artifactId>targetbrain</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>targetbrain Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11.  
  12. <!-- Generic properties -->
  13. <java.version>1.8</java.version>
  14. <encoding>UTF-8</encoding>
  15. <!-- Web -->
  16. <jsp.version>2.2</jsp.version>
  17. <jstl.version>1.2</jstl.version>
  18. <servlet.version>3.1.0</servlet.version>
  19.  
  20. <!-- Spring -->
  21. <spring.version>4.2.4.RELEASE</spring.version>
  22. <spring.security.version>3.2.3.RELEASE</spring.security.version>
  23.  
  24. </properties>
  25.  
  26. <dependencies>
  27.  
  28. <!-- Spring MVC -->
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-core</artifactId>
  32. <version>${spring.version}</version>
  33. </dependency>
  34.  
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-web</artifactId>
  38. <version>${spring.version}</version>
  39. </dependency>
  40.  
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-webmvc</artifactId>
  44. <version>${spring.version}</version>
  45. </dependency>
  46.  
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-aop</artifactId>
  50. <version>${spring.version}</version>
  51. </dependency>
  52.  
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-jdbc</artifactId>
  56. <version>${spring.version}</version>
  57. </dependency>
  58.  
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-context</artifactId>
  62. <version>${spring.version}</version>
  63. </dependency>
  64.  
  65. <dependency>
  66. <groupId>org.springframework</groupId>
  67. <artifactId>spring-orm</artifactId>
  68. <version>${spring.version}</version>
  69. </dependency>
  70.  
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-tx</artifactId>
  74. <version>${spring.version}</version>
  75. </dependency>
  76.  
  77. <!-- Spring security -->
  78. <dependency>
  79. <groupId>org.springframework.security</groupId>
  80. <artifactId>spring-security-web</artifactId>
  81. <version>4.0.4.RELEASE</version>
  82. </dependency>
  83.  
  84. <dependency>
  85. <groupId>org.springframework.security</groupId>
  86. <artifactId>spring-security-config</artifactId>
  87. <version>${spring.security.version}</version>
  88. </dependency>
  89.  
  90. <!-- Spring Test -->
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-test</artifactId>
  94. <version>${spring.version}</version>
  95. </dependency>
  96.  
  97. <dependency>
  98. <groupId>junit</groupId>
  99. <artifactId>junit</artifactId>
  100. <version>4.12</version>
  101. </dependency>
  102.  
  103. <!-- Other Servlet Web dependencies -->
  104. <dependency>
  105. <groupId>javax.servlet</groupId>
  106. <artifactId>jstl</artifactId>
  107. <version>${jstl.version}</version>
  108. </dependency>
  109.  
  110. <dependency>
  111. <groupId>javax.servlet</groupId>
  112. <artifactId>javax.servlet-api</artifactId>
  113. <version>${servlet.version}</version>
  114. <scope>provided</scope>
  115. </dependency>
  116.  
  117. <dependency>
  118. <groupId>javax.servlet.jsp</groupId>
  119. <artifactId>jsp-api</artifactId>
  120. <version>${jsp.version}</version>
  121. <scope>provided</scope>
  122. </dependency>
  123.  
  124. <!-- JSON jackson -->
  125. <dependency>
  126. <groupId>com.fasterxml.jackson.core</groupId>
  127. <artifactId>jackson-core</artifactId>
  128. <version>2.8.1</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.fasterxml.jackson.core</groupId>
  132. <artifactId>jackson-databind</artifactId>
  133. <version>2.8.1</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.fasterxml.jackson.core</groupId>
  137. <artifactId>jackson-annotations</artifactId>
  138. <version>2.8.1</version>
  139. </dependency>
  140.  
  141. <!-- JSON -->
  142. <dependency>
  143. <groupId>org.json</groupId>
  144. <artifactId>json</artifactId>
  145. <version>20151123</version>
  146. </dependency>
  147.  
  148. <!-- Hibernate -->
  149. <dependency>
  150. <groupId>org.hibernate</groupId>
  151. <artifactId>hibernate-core</artifactId>
  152. <version>4.3.11.Final</version>
  153. </dependency>
  154.  
  155. <dependency>
  156. <groupId>mysql</groupId>
  157. <artifactId>mysql-connector-java</artifactId>
  158. <version>5.1.38</version>
  159. </dependency>
  160.  
  161. <!-- Log4J 2 -->
  162. <dependency>
  163. <groupId>org.apache.logging.log4j</groupId>
  164. <artifactId>log4j-core</artifactId>
  165. <version>2.6.2</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.logging.log4j</groupId>
  169. <artifactId>log4j-api</artifactId>
  170. <version>2.6.2</version>
  171. </dependency>
  172.  
  173. <dependency>
  174. <groupId>org.springframework</groupId>
  175. <artifactId>spring-context-support</artifactId>
  176. <version>${spring.version}</version>
  177. </dependency>
  178.  
  179.  
  180. <dependency>
  181. <groupId>javax.mail</groupId>
  182. <artifactId>mail</artifactId>
  183. <version>1.4.7</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.sun.mail</groupId>
  187. <artifactId>smtp</artifactId>
  188. <version>1.5.6</version>
  189. </dependency>
  190.  
  191.  
  192.  
  193. </dependencies>
  194.  
  195. <build>
  196. <plugins>
  197. <plugin>
  198. <artifactId>maven-compiler-plugin</artifactId>
  199. <version>3.5</version>
  200. <configuration>
  201. <source>1.8</source>
  202. <target>1.8</target>
  203. </configuration>
  204. </plugin>
  205. <plugin>
  206. <artifactId>maven-war-plugin</artifactId>
  207. <version>2.6</version>
  208. <configuration>
  209. <failOnMissingWebXml>false</failOnMissingWebXml>
  210. </configuration>
  211. </plugin>
  212. </plugins>
  213. </build>
  214.  
  215. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement