Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.46 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/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>pl.edu.agh</groupId>
  7. <artifactId>Tai</artifactId>
  8. <packaging>war</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <name>QHash Maven Webapp</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <properties>
  14. <spring.version>
  15. 4.1.6.RELEASE
  16. </spring.version>
  17. <spring.security.version>
  18. 3.2.5.RELEASE
  19. </spring.security.version>
  20. <hibernate.version>
  21. 4.3.8.Final
  22. </hibernate.version>
  23. <dbcp.version>
  24. 1.4
  25. </dbcp.version>
  26. <spring.social.version>
  27. 1.1.0.RELEASE
  28. </spring.social.version>
  29. </properties>
  30.  
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.neuroph</groupId>
  34. <artifactId>neuroph</artifactId>
  35. <version>2.8</version>
  36. <scope>system</scope>
  37. <systemPath>${basedir}/lib/neuroph-2.8/neuroph-core-2.8.jar</systemPath>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.postgresql</groupId>
  41. <artifactId>postgresql</artifactId>
  42. <version>9.4-1201-jdbc4</version>
  43. </dependency>
  44.  
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-core</artifactId>
  48. <version>${spring.version}</version>
  49. </dependency>
  50.  
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-web</artifactId>
  54. <version>${spring.version}</version>
  55. </dependency>
  56.  
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-webmvc</artifactId>
  60. <version>${spring.version}</version>
  61. </dependency>
  62.  
  63. <dependency>
  64. <groupId>org.springframework</groupId>
  65. <artifactId>spring-context</artifactId>
  66. <version>${spring.version}</version>
  67. </dependency>
  68.  
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-orm</artifactId>
  72. <version>${spring.version}</version>
  73. </dependency>
  74.  
  75. <dependency>
  76. <groupId>org.springframework</groupId>
  77. <artifactId>spring-jdbc</artifactId>
  78. <version>${spring.version}</version>
  79. </dependency>
  80.  
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-test</artifactId>
  84. <version>${spring.version}</version>
  85. <scope>test</scope>
  86. </dependency>
  87.  
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-tx</artifactId>
  91. <version>${spring.security.version}</version>
  92. </dependency>
  93.  
  94. <dependency>
  95. <groupId>org.springframework.security</groupId>
  96. <artifactId>spring-security-core</artifactId>
  97. <version>${spring.security.version}</version>
  98. </dependency>
  99.  
  100. <dependency>
  101. <groupId>org.springframework.security</groupId>
  102. <artifactId>spring-security-config</artifactId>
  103. <version>${spring.security.version}</version>
  104. </dependency>
  105.  
  106. <dependency>
  107. <groupId>org.springframework.security</groupId>
  108. <artifactId>spring-security-web</artifactId>
  109. <version>${spring.security.version}</version>
  110. </dependency>
  111.  
  112. <!-- Spring Security JSP Taglib -->
  113. <dependency>
  114. <groupId>org.springframework.security</groupId>
  115. <artifactId>spring-security-taglibs</artifactId>
  116. <version>${spring.security.version}</version>
  117. </dependency>
  118.  
  119. <dependency>
  120. <groupId>javax.servlet</groupId>
  121. <artifactId>javax.servlet-api</artifactId>
  122. <version>3.1.0</version>
  123. </dependency>
  124.  
  125. <dependency>
  126. <groupId>org.hibernate</groupId>
  127. <artifactId>hibernate-core</artifactId>
  128. <version>${hibernate.version}</version>
  129. </dependency>
  130.  
  131. <dependency>
  132. <groupId>mysql</groupId>
  133. <artifactId>mysql-connector-java</artifactId>
  134. <version>5.1.35</version>
  135. </dependency>
  136.  
  137. <dependency>
  138. <groupId>jfree</groupId>
  139. <artifactId>jfreechart</artifactId>
  140. <version>1.0.12</version>
  141. </dependency>
  142.  
  143. <!-- dbcp for interactions with database -->
  144. <dependency>
  145. <groupId>commons-dbcp</groupId>
  146. <artifactId>commons-dbcp</artifactId>
  147. <version>${dbcp.version}</version>
  148. </dependency>
  149.  
  150. <!-- jstl for jsp page -->
  151. <dependency>
  152. <groupId>javax.servlet</groupId>
  153. <artifactId>jstl</artifactId>
  154. <version>1.2</version>
  155. </dependency>
  156.  
  157. <dependency>
  158. <groupId>org.springframework.social</groupId>
  159. <artifactId>spring-social-twitter</artifactId>
  160. <version>${spring.social.version}</version>
  161. </dependency>
  162. <!--Validations in model -->
  163. <dependency>
  164. <groupId>org.hibernate</groupId>
  165. <artifactId>hibernate-validator</artifactId>
  166. <version>5.1.3.Final</version>
  167. </dependency>
  168.  
  169. <dependency>
  170. <groupId>joda-time</groupId>
  171. <artifactId>joda-time</artifactId>
  172. <version>2.8</version>
  173. </dependency>
  174.  
  175. <!--Downloading and parsing html -->
  176. <dependency>
  177. <groupId>org.jsoup</groupId>
  178. <artifactId>jsoup</artifactId>
  179. <version>1.8.2</version>
  180. </dependency>
  181.  
  182. <dependency>
  183. <groupId>org.mockito</groupId>
  184. <artifactId>mockito-all</artifactId>
  185. <version>1.10.19</version>
  186. <scope>test</scope>
  187. </dependency>
  188.  
  189. <dependency>
  190. <groupId>junit</groupId>
  191. <artifactId>junit</artifactId>
  192. <version>4.12</version>
  193. <scope>test</scope>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.google.code.gson</groupId>
  197. <artifactId>gson</artifactId>
  198. <version>2.3.1</version>
  199. </dependency>
  200. <!-- Apache Commons Upload -->
  201. <dependency>
  202. <groupId>commons-fileupload</groupId>
  203. <artifactId>commons-fileupload</artifactId>
  204. <version>1.2.2</version>
  205. </dependency>
  206.  
  207. <!-- Apache Commons Upload -->
  208. <dependency>
  209. <groupId>commons-io</groupId>
  210. <artifactId>commons-io</artifactId>
  211. <version>1.3.2</version>
  212. </dependency>
  213.  
  214. <dependency>
  215. <groupId>taglibs</groupId>
  216. <artifactId>standard</artifactId>
  217. <version>1.1.2</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>commons-fileupload</groupId>
  221. <artifactId>commons-fileupload</artifactId>
  222. <version>1.2</version>
  223. </dependency>
  224.  
  225. <!--Allows to send email messages -->
  226. <dependency>
  227. <groupId>org.springframework</groupId>
  228. <artifactId>spring-context-support</artifactId>
  229. <version>${spring.version}</version>
  230. </dependency>
  231.  
  232. <!--Allows to send email messages -->
  233. <dependency>
  234. <groupId>javax.activation</groupId>
  235. <artifactId>activation</artifactId>
  236. <version>1.1.1</version>
  237. </dependency>
  238.  
  239. <!--Allows to send email messages -->
  240. <dependency>
  241. <groupId>com.sun.mail</groupId>
  242. <artifactId>javax.mail</artifactId>
  243. <version>1.5.1</version>
  244. </dependency>
  245.  
  246.  
  247. </dependencies>
  248. <build>
  249. <plugins>
  250. <plugin>
  251. <groupId>org.apache.maven.plugins</groupId>
  252. <artifactId>maven-compiler-plugin</artifactId>
  253. <version>3.3</version>
  254. <configuration>
  255. <source>1.8</source>
  256. <target>1.8</target>
  257. </configuration>
  258. </plugin>
  259.  
  260. <plugin>
  261. <groupId>org.apache.maven.plugins</groupId>
  262. <artifactId>maven-dependency-plugin</artifactId>
  263. <version>2.3</version>
  264. <executions>
  265. <execution>
  266. <phase>package</phase>
  267. <goals><goal>copy</goal></goals>
  268. <configuration>
  269. <artifactItems>
  270. <artifactItem>
  271. <groupId>com.github.jsimone</groupId>
  272. <artifactId>webapp-runner</artifactId>
  273. <version>7.0.57.2</version>
  274. <destFileName>webapp-runner.jar</destFileName>
  275. </artifactItem>
  276. </artifactItems>
  277. </configuration>
  278. </execution>
  279. </executions>
  280. </plugin>
  281. </plugins>
  282. </build>
  283. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement