Subversion Repositories SmartDukaan

Rev

Rev 21347 | Rev 21361 | 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>
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>
105
		<dependency>
106
			<groupId>org.springframework</groupId>
107
			<artifactId>spring-webmvc</artifactId>
108
			<version>4.3.5.RELEASE</version>
109
		</dependency>
110
		<dependency>
111
			<groupId>org.springframework</groupId>
112
			<artifactId>spring-beans</artifactId>
113
			<version>4.3.5.RELEASE</version>
114
		</dependency>
115
		<dependency>
116
			<groupId>org.springframework</groupId>
117
			<artifactId>spring-tx</artifactId>
118
			<version>4.3.5.RELEASE</version>
119
		</dependency>
120
 
121
		<!-- Hibernate dependencies -->
122
		<dependency>
123
			<groupId>org.hibernate</groupId>
124
			<artifactId>hibernate-core</artifactId>
125
			<version>5.2.10.Final</version>
126
		</dependency>
127
		<dependency>
128
			<groupId>org.hibernate</groupId>
129
			<artifactId>hibernate-entitymanager</artifactId>
130
			<version>5.2.10.Final</version>
131
		</dependency>
132
		<dependency>
133
			<groupId>org.hibernate.javax.persistence</groupId>
134
			<artifactId>hibernate-jpa-2.1-api</artifactId>
135
			<version>1.0.0.Final</version>
136
		</dependency>
137
		<dependency>
138
			<groupId>org.hibernate.common</groupId>
139
			<artifactId>hibernate-commons-annotations</artifactId>
140
			<version>5.0.1.Final</version>
141
		</dependency>
142
		<dependency>
143
			<groupId>org.jboss.logging</groupId>
144
			<artifactId>jboss-logging</artifactId>
145
			<version>3.3.0.Final</version>
146
		</dependency>
147
 
148
		<!-- Servlet and jsp dependencies -->
149
		<dependency>
150
			<groupId>javax.servlet</groupId>
151
			<artifactId>javax.servlet-api</artifactId>
152
			<version>3.1.0</version>
153
		</dependency>
154
		<dependency>
155
			<groupId>javax.servlet.jsp</groupId>
156
			<artifactId>jsp-api</artifactId>
157
			<version>2.2</version>
158
		</dependency>
159
		<dependency>
160
			<groupId>javax.servlet</groupId>
161
			<artifactId>javax.servlet-api</artifactId>
162
			<version>3.1.0</version>
163
		</dependency>
164
		<dependency>
165
			<groupId>javax.servlet</groupId>
166
			<artifactId>jstl</artifactId>
167
			<version>1.2</version>
168
		</dependency>
169
		<dependency>
170
			<groupId>taglibs</groupId>
171
			<artifactId>standard</artifactId>
172
			<version>1.1.2</version>
173
		</dependency>
174
 
175
 
176
 
177
		<!-- File upload api -->
178
		<dependency>
179
			<groupId>commons-fileupload</groupId>
180
			<artifactId>commons-fileupload</artifactId>
181
			<version>1.3</version>
182
		</dependency>
183
 
184
		<!-- Apache common lang -->
185
		<dependency>
186
			<groupId>org.apache.commons</groupId>
187
			<artifactId>commons-lang3</artifactId>
188
			<version>3.5</version>
189
		</dependency>
190
 
191
		<!-- Logging -->
192
		<dependency>
193
			<groupId>org.slf4j</groupId>
194
			<artifactId>slf4j-api</artifactId>
195
			<version>1.7.22</version>
196
		</dependency>
197
		<dependency>
198
			<groupId>org.slf4j</groupId>
199
			<artifactId>slf4j-simple</artifactId>
200
			<version>1.7.25</version>
201
		</dependency>
202
 
203
 
204
		<!-- Json parsing -->
205
		<dependency>
206
			<groupId>com.fasterxml.jackson.core</groupId>
207
			<artifactId>jackson-core</artifactId>
208
			<version>2.8.5</version>
209
		</dependency>
210
		<dependency>
211
			<groupId>com.fasterxml.jackson.core</groupId>
212
			<artifactId>jackson-databind</artifactId>
213
			<version>2.8.5</version>
214
		</dependency>
215
 
216
 
217
		<!-- Common io -->
218
		<dependency>
219
			<groupId>commons-io</groupId>
220
			<artifactId>commons-io</artifactId>
221
			<version>2.5</version>
222
		</dependency>
223
 
224
		<!-- Mysql connector -->
225
		<dependency>
226
			<groupId>mysql</groupId>
227
			<artifactId>mysql-connector-java</artifactId>
228
			<version>6.0.5</version>
229
		</dependency>
230
 
231
		<!-- Swagger -->
232
		<dependency>
233
			<groupId>io.springfox</groupId>
234
			<artifactId>springfox-swagger-ui</artifactId>
235
			<version>2.5.0</version>
236
		</dependency>
237
		<dependency>
238
			<groupId>io.springfox</groupId>
239
			<artifactId>springfox-swagger2</artifactId>
240
			<version>2.5.0</version>
241
		</dependency>
242
 
243
		<!-- https://mvnrepository.com/artifact/javax.mail/mail -->
244
		<dependency>
245
			<groupId>javax.mail</groupId>
246
			<artifactId>mail</artifactId>
247
			<version>1.4</version>
248
		</dependency>
249
 
250
		<dependency>
251
			<groupId>com.eclipsesource.minimal-json</groupId>
252
			<artifactId>minimal-json</artifactId>
253
			<version>0.9.4</version>
254
		</dependency>
255
 
256
		<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
257
		<dependency>
258
			<groupId>com.google.code.gson</groupId>
259
			<artifactId>gson</artifactId>
260
			<version>2.8.0</version>
261
		</dependency>
262
 
263
	</dependencies>
264
 
265
 
266
</project>