| 21165 |
ashik.ali |
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>com.profitmandi</groupId>
|
|
|
4 |
<artifactId>profitmandi-web</artifactId>
|
|
|
5 |
<packaging>war</packaging>
|
|
|
6 |
<version>0.0.1-SNAPSHOT</version>
|
|
|
7 |
<name>Profit Mandi</name>
|
|
|
8 |
|
|
|
9 |
<dependencies>
|
|
|
10 |
<!-- Spring dependencies -->
|
|
|
11 |
<dependency>
|
|
|
12 |
<groupId>org.springframework</groupId>
|
|
|
13 |
<artifactId>spring-context</artifactId>
|
|
|
14 |
<version>4.3.5.RELEASE</version>
|
|
|
15 |
</dependency>
|
|
|
16 |
<dependency>
|
|
|
17 |
<groupId>org.springframework</groupId>
|
|
|
18 |
<artifactId>spring-web</artifactId>
|
|
|
19 |
<version>4.3.5.RELEASE</version>
|
|
|
20 |
</dependency>
|
|
|
21 |
<dependency>
|
|
|
22 |
<groupId>org.springframework</groupId>
|
|
|
23 |
<artifactId>spring-core</artifactId>
|
|
|
24 |
<version>4.3.5.RELEASE</version>
|
|
|
25 |
</dependency>
|
|
|
26 |
<dependency>
|
|
|
27 |
<groupId>org.springframework</groupId>
|
|
|
28 |
<artifactId>spring-webmvc</artifactId>
|
|
|
29 |
<version>4.3.5.RELEASE</version>
|
|
|
30 |
</dependency>
|
|
|
31 |
<dependency>
|
|
|
32 |
<groupId>org.springframework</groupId>
|
|
|
33 |
<artifactId>spring-beans</artifactId>
|
|
|
34 |
<version>4.3.5.RELEASE</version>
|
|
|
35 |
</dependency>
|
|
|
36 |
<dependency>
|
|
|
37 |
<groupId>org.springframework</groupId>
|
|
|
38 |
<artifactId>spring-tx</artifactId>
|
|
|
39 |
<version>4.3.5.RELEASE</version>
|
|
|
40 |
</dependency>
|
|
|
41 |
|
|
|
42 |
<!-- Hibernate dependencies -->
|
|
|
43 |
<dependency>
|
|
|
44 |
<groupId>org.hibernate</groupId>
|
|
|
45 |
<artifactId>hibernate-core</artifactId>
|
|
|
46 |
<version>5.2.5.Final</version>
|
|
|
47 |
</dependency>
|
|
|
48 |
<dependency>
|
|
|
49 |
<groupId>org.hibernate</groupId>
|
|
|
50 |
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
51 |
<version>5.2.5.Final</version>
|
|
|
52 |
</dependency>
|
|
|
53 |
<dependency>
|
|
|
54 |
<groupId>org.hibernate.javax.persistence</groupId>
|
|
|
55 |
<artifactId>hibernate-jpa-2.1-api</artifactId>
|
|
|
56 |
<version>1.0.0.Final</version>
|
|
|
57 |
</dependency>
|
|
|
58 |
<dependency>
|
|
|
59 |
<groupId>org.hibernate.common</groupId>
|
|
|
60 |
<artifactId>hibernate-commons-annotations</artifactId>
|
|
|
61 |
<version>5.0.1.Final</version>
|
|
|
62 |
</dependency>
|
|
|
63 |
<dependency>
|
|
|
64 |
<groupId>org.jboss.logging</groupId>
|
|
|
65 |
<artifactId>jboss-logging</artifactId>
|
|
|
66 |
<version>3.3.0.Final</version>
|
|
|
67 |
</dependency>
|
|
|
68 |
|
|
|
69 |
<!-- Servlet and jsp dependencies -->
|
|
|
70 |
<dependency>
|
|
|
71 |
<groupId>javax.servlet</groupId>
|
|
|
72 |
<artifactId>javax.servlet-api</artifactId>
|
|
|
73 |
<version>3.1.0</version>
|
|
|
74 |
</dependency>
|
|
|
75 |
<dependency>
|
|
|
76 |
<groupId>javax.servlet.jsp</groupId>
|
|
|
77 |
<artifactId>jsp-api</artifactId>
|
|
|
78 |
<version>2.2</version>
|
|
|
79 |
</dependency>
|
|
|
80 |
<dependency>
|
|
|
81 |
<groupId>javax.servlet</groupId>
|
|
|
82 |
<artifactId>javax.servlet-api</artifactId>
|
|
|
83 |
<version>3.1.0</version>
|
|
|
84 |
</dependency>
|
|
|
85 |
|
|
|
86 |
|
|
|
87 |
<dependency>
|
|
|
88 |
<groupId>commons-fileupload</groupId>
|
|
|
89 |
<artifactId>commons-fileupload</artifactId>
|
|
|
90 |
<version>1.3</version>
|
|
|
91 |
</dependency>
|
|
|
92 |
<dependency>
|
|
|
93 |
<groupId>org.apache.commons</groupId>
|
|
|
94 |
<artifactId>commons-lang3</artifactId>
|
|
|
95 |
<version>3.5</version>
|
|
|
96 |
</dependency>
|
|
|
97 |
|
|
|
98 |
<dependency>
|
|
|
99 |
<groupId>org.slf4j</groupId>
|
|
|
100 |
<artifactId>slf4j-api</artifactId>
|
|
|
101 |
<version>1.7.22</version>
|
|
|
102 |
</dependency>
|
|
|
103 |
|
|
|
104 |
<dependency>
|
|
|
105 |
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
106 |
<artifactId>jackson-core</artifactId>
|
|
|
107 |
<version>2.8.5</version>
|
|
|
108 |
</dependency>
|
|
|
109 |
<dependency>
|
|
|
110 |
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
111 |
<artifactId>jackson-databind</artifactId>
|
|
|
112 |
<version>2.8.5</version>
|
|
|
113 |
</dependency>
|
|
|
114 |
|
|
|
115 |
|
|
|
116 |
|
|
|
117 |
<dependency>
|
|
|
118 |
<groupId>commons-io</groupId>
|
|
|
119 |
<artifactId>commons-io</artifactId>
|
|
|
120 |
<version>2.5</version>
|
|
|
121 |
</dependency>
|
|
|
122 |
<dependency>
|
|
|
123 |
<groupId>mysql</groupId>
|
|
|
124 |
<artifactId>mysql-connector-java</artifactId>
|
|
|
125 |
<version>6.0.5</version>
|
|
|
126 |
</dependency>
|
|
|
127 |
</dependencies>
|
|
|
128 |
</project>
|