| 21343 |
kshitij.so |
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/xsd/maven-4.0.0.xsd">
|
|
|
3 |
<modelVersion>4.0.0</modelVersion>
|
|
|
4 |
<groupId>com.profitmandi</groupId>
|
|
|
5 |
<artifactId>profitmandi-web</artifactId>
|
|
|
6 |
<packaging>war</packaging>
|
|
|
7 |
<version>0.0.1-SNAPSHOT</version>
|
|
|
8 |
<name>profitmandi-web</name>
|
|
|
9 |
<properties>
|
|
|
10 |
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
11 |
<env>dev</env>
|
|
|
12 |
</properties>
|
|
|
13 |
<build>
|
|
|
14 |
<resources>
|
|
|
15 |
<resource>
|
|
|
16 |
<directory>src/main/resources</directory>
|
|
|
17 |
<filtering>true</filtering>
|
|
|
18 |
</resource>
|
|
|
19 |
</resources>
|
|
|
20 |
<plugins>
|
|
|
21 |
<plugin>
|
|
|
22 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
23 |
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
24 |
<version>3.6.1</version>
|
|
|
25 |
<configuration>
|
|
|
26 |
<source>1.8</source>
|
|
|
27 |
<target>1.8</target>
|
|
|
28 |
</configuration>
|
|
|
29 |
|
|
|
30 |
</plugin>
|
|
|
31 |
<plugin>
|
|
|
32 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
33 |
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
34 |
<executions>
|
|
|
35 |
<execution>
|
|
|
36 |
<id>copy-dependencies</id>
|
|
|
37 |
<phase>package</phase>
|
|
|
38 |
<goals>
|
|
|
39 |
<goal>copy-dependencies</goal>
|
|
|
40 |
</goals>
|
|
|
41 |
<configuration>
|
|
|
42 |
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
43 |
<overWriteReleases>false</overWriteReleases>
|
|
|
44 |
<overWriteSnapshots>true</overWriteSnapshots>
|
|
|
45 |
</configuration>
|
|
|
46 |
</execution>
|
|
|
47 |
</executions>
|
|
|
48 |
</plugin>
|
|
|
49 |
</plugins>
|
|
|
50 |
</build>
|
|
|
51 |
<dependencies>
|
| 21347 |
kshitij.so |
52 |
<!-- Internal Dependencies -->
|
| 21348 |
kshitij.so |
53 |
<dependency>
|
|
|
54 |
<groupId>org.apache.thrift</groupId>
|
|
|
55 |
<artifactId>libthrift</artifactId>
|
|
|
56 |
<version>0.7.0</version>
|
|
|
57 |
<exclusions>
|
|
|
58 |
<exclusion>
|
|
|
59 |
<groupId>commons-codec</groupId>
|
|
|
60 |
<artifactId>commons-codec</artifactId>
|
|
|
61 |
</exclusion>
|
|
|
62 |
<exclusion>
|
|
|
63 |
<groupId>javax.servlet</groupId>
|
|
|
64 |
<artifactId>servlet-api</artifactId>
|
|
|
65 |
</exclusion>
|
|
|
66 |
</exclusions>
|
|
|
67 |
</dependency>
|
|
|
68 |
<dependency>
|
|
|
69 |
<groupId>in.shop2020</groupId>
|
|
|
70 |
<artifactId>ThriftConfig</artifactId>
|
|
|
71 |
<version>1.0-SNAPSHOT</version>
|
|
|
72 |
</dependency>
|
| 21347 |
kshitij.so |
73 |
|
| 21343 |
kshitij.so |
74 |
<!-- JWT Dependencies -->
|
|
|
75 |
<dependency>
|
|
|
76 |
<groupId>com.auth0</groupId>
|
|
|
77 |
<artifactId>java-jwt</artifactId>
|
|
|
78 |
<version>3.1.0</version>
|
|
|
79 |
</dependency>
|
|
|
80 |
|
|
|
81 |
<!-- Apache http client -->
|
|
|
82 |
<dependency>
|
|
|
83 |
<groupId>org.apache.httpcomponents</groupId>
|
|
|
84 |
<artifactId>httpclient</artifactId>
|
|
|
85 |
<version>4.5.3</version>
|
|
|
86 |
</dependency>
|
|
|
87 |
|
|
|
88 |
|
|
|
89 |
<!-- Spring dependencies -->
|
|
|
90 |
<dependency>
|
|
|
91 |
<groupId>org.springframework</groupId>
|
|
|
92 |
<artifactId>spring-context</artifactId>
|
|
|
93 |
<version>4.3.5.RELEASE</version>
|
|
|
94 |
</dependency>
|
|
|
95 |
<dependency>
|
|
|
96 |
<groupId>org.springframework</groupId>
|
|
|
97 |
<artifactId>spring-web</artifactId>
|
|
|
98 |
<version>4.3.5.RELEASE</version>
|
|
|
99 |
</dependency>
|
|
|
100 |
<dependency>
|
|
|
101 |
<groupId>org.springframework</groupId>
|
|
|
102 |
<artifactId>spring-core</artifactId>
|
|
|
103 |
<version>4.3.5.RELEASE</version>
|
|
|
104 |
</dependency>
|
| 21361 |
kshitij.so |
105 |
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
|
| 21343 |
kshitij.so |
106 |
<dependency>
|
|
|
107 |
<groupId>org.springframework</groupId>
|
| 21361 |
kshitij.so |
108 |
<artifactId>spring-jdbc</artifactId>
|
|
|
109 |
<version>4.3.5.RELEASE</version>
|
|
|
110 |
</dependency>
|
|
|
111 |
|
|
|
112 |
<dependency>
|
|
|
113 |
<groupId>org.springframework</groupId>
|
| 21343 |
kshitij.so |
114 |
<artifactId>spring-webmvc</artifactId>
|
|
|
115 |
<version>4.3.5.RELEASE</version>
|
|
|
116 |
</dependency>
|
|
|
117 |
<dependency>
|
|
|
118 |
<groupId>org.springframework</groupId>
|
|
|
119 |
<artifactId>spring-beans</artifactId>
|
|
|
120 |
<version>4.3.5.RELEASE</version>
|
|
|
121 |
</dependency>
|
|
|
122 |
<dependency>
|
|
|
123 |
<groupId>org.springframework</groupId>
|
|
|
124 |
<artifactId>spring-tx</artifactId>
|
|
|
125 |
<version>4.3.5.RELEASE</version>
|
|
|
126 |
</dependency>
|
|
|
127 |
|
|
|
128 |
<!-- Hibernate dependencies -->
|
|
|
129 |
<dependency>
|
|
|
130 |
<groupId>org.hibernate</groupId>
|
|
|
131 |
<artifactId>hibernate-core</artifactId>
|
|
|
132 |
<version>5.2.10.Final</version>
|
|
|
133 |
</dependency>
|
|
|
134 |
<dependency>
|
|
|
135 |
<groupId>org.hibernate.javax.persistence</groupId>
|
|
|
136 |
<artifactId>hibernate-jpa-2.1-api</artifactId>
|
|
|
137 |
<version>1.0.0.Final</version>
|
|
|
138 |
</dependency>
|
|
|
139 |
<dependency>
|
|
|
140 |
<groupId>org.hibernate.common</groupId>
|
|
|
141 |
<artifactId>hibernate-commons-annotations</artifactId>
|
|
|
142 |
<version>5.0.1.Final</version>
|
|
|
143 |
</dependency>
|
|
|
144 |
<dependency>
|
|
|
145 |
<groupId>org.jboss.logging</groupId>
|
|
|
146 |
<artifactId>jboss-logging</artifactId>
|
|
|
147 |
<version>3.3.0.Final</version>
|
|
|
148 |
</dependency>
|
|
|
149 |
|
|
|
150 |
<!-- Servlet and jsp dependencies -->
|
|
|
151 |
<dependency>
|
|
|
152 |
<groupId>javax.servlet</groupId>
|
|
|
153 |
<artifactId>javax.servlet-api</artifactId>
|
|
|
154 |
<version>3.1.0</version>
|
|
|
155 |
</dependency>
|
|
|
156 |
<dependency>
|
|
|
157 |
<groupId>javax.servlet.jsp</groupId>
|
|
|
158 |
<artifactId>jsp-api</artifactId>
|
|
|
159 |
<version>2.2</version>
|
|
|
160 |
</dependency>
|
|
|
161 |
<dependency>
|
|
|
162 |
<groupId>javax.servlet</groupId>
|
|
|
163 |
<artifactId>javax.servlet-api</artifactId>
|
|
|
164 |
<version>3.1.0</version>
|
|
|
165 |
</dependency>
|
|
|
166 |
<dependency>
|
|
|
167 |
<groupId>javax.servlet</groupId>
|
|
|
168 |
<artifactId>jstl</artifactId>
|
|
|
169 |
<version>1.2</version>
|
|
|
170 |
</dependency>
|
|
|
171 |
<dependency>
|
|
|
172 |
<groupId>taglibs</groupId>
|
|
|
173 |
<artifactId>standard</artifactId>
|
|
|
174 |
<version>1.1.2</version>
|
|
|
175 |
</dependency>
|
|
|
176 |
|
|
|
177 |
|
|
|
178 |
|
|
|
179 |
<!-- File upload api -->
|
|
|
180 |
<dependency>
|
|
|
181 |
<groupId>commons-fileupload</groupId>
|
|
|
182 |
<artifactId>commons-fileupload</artifactId>
|
|
|
183 |
<version>1.3</version>
|
|
|
184 |
</dependency>
|
|
|
185 |
|
|
|
186 |
<!-- Apache common lang -->
|
|
|
187 |
<dependency>
|
|
|
188 |
<groupId>org.apache.commons</groupId>
|
|
|
189 |
<artifactId>commons-lang3</artifactId>
|
|
|
190 |
<version>3.5</version>
|
|
|
191 |
</dependency>
|
|
|
192 |
|
|
|
193 |
<!-- Logging -->
|
|
|
194 |
<dependency>
|
|
|
195 |
<groupId>org.slf4j</groupId>
|
|
|
196 |
<artifactId>slf4j-api</artifactId>
|
|
|
197 |
<version>1.7.22</version>
|
|
|
198 |
</dependency>
|
|
|
199 |
<dependency>
|
|
|
200 |
<groupId>org.slf4j</groupId>
|
|
|
201 |
<artifactId>slf4j-simple</artifactId>
|
|
|
202 |
<version>1.7.25</version>
|
|
|
203 |
</dependency>
|
|
|
204 |
|
|
|
205 |
|
|
|
206 |
<!-- Json parsing -->
|
|
|
207 |
<dependency>
|
|
|
208 |
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
209 |
<artifactId>jackson-core</artifactId>
|
|
|
210 |
<version>2.8.5</version>
|
|
|
211 |
</dependency>
|
|
|
212 |
<dependency>
|
|
|
213 |
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
214 |
<artifactId>jackson-databind</artifactId>
|
|
|
215 |
<version>2.8.5</version>
|
|
|
216 |
</dependency>
|
| 21361 |
kshitij.so |
217 |
<!-- https://mvnrepository.com/artifact/org.springframework/spring-orm -->
|
|
|
218 |
<dependency>
|
|
|
219 |
<groupId>org.springframework</groupId>
|
|
|
220 |
<artifactId>spring-orm</artifactId>
|
|
|
221 |
<version>4.3.8.RELEASE</version>
|
|
|
222 |
</dependency>
|
| 21343 |
kshitij.so |
223 |
|
|
|
224 |
|
| 21361 |
kshitij.so |
225 |
|
| 21343 |
kshitij.so |
226 |
<!-- Common io -->
|
|
|
227 |
<dependency>
|
|
|
228 |
<groupId>commons-io</groupId>
|
|
|
229 |
<artifactId>commons-io</artifactId>
|
|
|
230 |
<version>2.5</version>
|
|
|
231 |
</dependency>
|
|
|
232 |
|
|
|
233 |
<!-- Mysql connector -->
|
|
|
234 |
<dependency>
|
|
|
235 |
<groupId>mysql</groupId>
|
|
|
236 |
<artifactId>mysql-connector-java</artifactId>
|
|
|
237 |
<version>6.0.5</version>
|
|
|
238 |
</dependency>
|
|
|
239 |
|
|
|
240 |
<!-- Swagger -->
|
|
|
241 |
<dependency>
|
|
|
242 |
<groupId>io.springfox</groupId>
|
|
|
243 |
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
244 |
<version>2.5.0</version>
|
|
|
245 |
</dependency>
|
|
|
246 |
<dependency>
|
|
|
247 |
<groupId>io.springfox</groupId>
|
|
|
248 |
<artifactId>springfox-swagger2</artifactId>
|
|
|
249 |
<version>2.5.0</version>
|
|
|
250 |
</dependency>
|
|
|
251 |
|
|
|
252 |
<!-- https://mvnrepository.com/artifact/javax.mail/mail -->
|
|
|
253 |
<dependency>
|
|
|
254 |
<groupId>javax.mail</groupId>
|
|
|
255 |
<artifactId>mail</artifactId>
|
|
|
256 |
<version>1.4</version>
|
|
|
257 |
</dependency>
|
|
|
258 |
|
|
|
259 |
<dependency>
|
|
|
260 |
<groupId>com.eclipsesource.minimal-json</groupId>
|
|
|
261 |
<artifactId>minimal-json</artifactId>
|
|
|
262 |
<version>0.9.4</version>
|
|
|
263 |
</dependency>
|
|
|
264 |
|
|
|
265 |
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
|
|
266 |
<dependency>
|
|
|
267 |
<groupId>com.google.code.gson</groupId>
|
|
|
268 |
<artifactId>gson</artifactId>
|
|
|
269 |
<version>2.8.0</version>
|
|
|
270 |
</dependency>
|
| 21378 |
kshitij.so |
271 |
<dependency>
|
|
|
272 |
<groupId>org.json</groupId>
|
|
|
273 |
<artifactId>json</artifactId>
|
|
|
274 |
<version>20131018</version>
|
|
|
275 |
</dependency>
|
| 21343 |
kshitij.so |
276 |
|
| 21378 |
kshitij.so |
277 |
<!-- Mongo driver -->
|
|
|
278 |
<dependency>
|
|
|
279 |
<groupId>org.mongodb</groupId>
|
|
|
280 |
<artifactId>mongo-java-driver</artifactId>
|
|
|
281 |
<version>2.11.0</version>
|
|
|
282 |
</dependency>
|
|
|
283 |
|
| 21394 |
kshitij.so |
284 |
<!-- https://mvnrepository.com/artifact/eu.medsea.mimeutil/mime-util -->
|
|
|
285 |
<dependency>
|
|
|
286 |
<groupId>eu.medsea.mimeutil</groupId>
|
|
|
287 |
<artifactId>mime-util</artifactId>
|
|
|
288 |
<version>2.1.1</version>
|
|
|
289 |
</dependency>
|
|
|
290 |
|
| 21343 |
kshitij.so |
291 |
</dependencies>
|
|
|
292 |
</project>
|