Subversion Repositories SmartDukaan

Rev

Rev 21443 | Rev 21593 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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