Subversion Repositories SmartDukaan

Rev

Rev 21343 | Rev 21348 | 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 -->
53
 
21343 kshitij.so 54
		<!-- JWT Dependencies -->
55
		<dependency>
56
			<groupId>com.auth0</groupId>
57
			<artifactId>java-jwt</artifactId>
58
			<version>3.1.0</version>
59
		</dependency>
60
 
61
		<!-- Apache http client -->
62
		<dependency>
63
			<groupId>org.apache.httpcomponents</groupId>
64
			<artifactId>httpclient</artifactId>
65
			<version>4.5.3</version>
66
		</dependency>
67
 
68
 
69
		<!-- Spring dependencies -->
70
		<dependency>
71
			<groupId>org.springframework</groupId>
72
			<artifactId>spring-context</artifactId>
73
			<version>4.3.5.RELEASE</version>
74
		</dependency>
75
		<dependency>
76
			<groupId>org.springframework</groupId>
77
			<artifactId>spring-web</artifactId>
78
			<version>4.3.5.RELEASE</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>org.springframework</groupId>
82
			<artifactId>spring-core</artifactId>
83
			<version>4.3.5.RELEASE</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>org.springframework</groupId>
87
			<artifactId>spring-webmvc</artifactId>
88
			<version>4.3.5.RELEASE</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>org.springframework</groupId>
92
			<artifactId>spring-beans</artifactId>
93
			<version>4.3.5.RELEASE</version>
94
		</dependency>
95
		<dependency>
96
			<groupId>org.springframework</groupId>
97
			<artifactId>spring-tx</artifactId>
98
			<version>4.3.5.RELEASE</version>
99
		</dependency>
100
 
101
		<!-- Hibernate dependencies -->
102
		<dependency>
103
			<groupId>org.hibernate</groupId>
104
			<artifactId>hibernate-core</artifactId>
105
			<version>5.2.10.Final</version>
106
		</dependency>
107
		<dependency>
108
			<groupId>org.hibernate</groupId>
109
			<artifactId>hibernate-entitymanager</artifactId>
110
			<version>5.2.10.Final</version>
111
		</dependency>
112
		<dependency>
113
			<groupId>org.hibernate.javax.persistence</groupId>
114
			<artifactId>hibernate-jpa-2.1-api</artifactId>
115
			<version>1.0.0.Final</version>
116
		</dependency>
117
		<dependency>
118
			<groupId>org.hibernate.common</groupId>
119
			<artifactId>hibernate-commons-annotations</artifactId>
120
			<version>5.0.1.Final</version>
121
		</dependency>
122
		<dependency>
123
			<groupId>org.jboss.logging</groupId>
124
			<artifactId>jboss-logging</artifactId>
125
			<version>3.3.0.Final</version>
126
		</dependency>
127
 
128
		<!-- Servlet and jsp dependencies -->
129
		<dependency>
130
			<groupId>javax.servlet</groupId>
131
			<artifactId>javax.servlet-api</artifactId>
132
			<version>3.1.0</version>
133
		</dependency>
134
		<dependency>
135
			<groupId>javax.servlet.jsp</groupId>
136
			<artifactId>jsp-api</artifactId>
137
			<version>2.2</version>
138
		</dependency>
139
		<dependency>
140
			<groupId>javax.servlet</groupId>
141
			<artifactId>javax.servlet-api</artifactId>
142
			<version>3.1.0</version>
143
		</dependency>
144
		<dependency>
145
			<groupId>javax.servlet</groupId>
146
			<artifactId>jstl</artifactId>
147
			<version>1.2</version>
148
		</dependency>
149
		<dependency>
150
			<groupId>taglibs</groupId>
151
			<artifactId>standard</artifactId>
152
			<version>1.1.2</version>
153
		</dependency>
154
 
155
 
156
 
157
		<!-- File upload api -->
158
		<dependency>
159
			<groupId>commons-fileupload</groupId>
160
			<artifactId>commons-fileupload</artifactId>
161
			<version>1.3</version>
162
		</dependency>
163
 
164
		<!-- Apache common lang -->
165
		<dependency>
166
			<groupId>org.apache.commons</groupId>
167
			<artifactId>commons-lang3</artifactId>
168
			<version>3.5</version>
169
		</dependency>
170
 
171
		<!-- Logging -->
172
		<dependency>
173
			<groupId>org.slf4j</groupId>
174
			<artifactId>slf4j-api</artifactId>
175
			<version>1.7.22</version>
176
		</dependency>
177
		<dependency>
178
			<groupId>org.slf4j</groupId>
179
			<artifactId>slf4j-simple</artifactId>
180
			<version>1.7.25</version>
181
		</dependency>
182
 
183
 
184
		<!-- Json parsing -->
185
		<dependency>
186
			<groupId>com.fasterxml.jackson.core</groupId>
187
			<artifactId>jackson-core</artifactId>
188
			<version>2.8.5</version>
189
		</dependency>
190
		<dependency>
191
			<groupId>com.fasterxml.jackson.core</groupId>
192
			<artifactId>jackson-databind</artifactId>
193
			<version>2.8.5</version>
194
		</dependency>
195
 
196
 
197
		<!-- Common io -->
198
		<dependency>
199
			<groupId>commons-io</groupId>
200
			<artifactId>commons-io</artifactId>
201
			<version>2.5</version>
202
		</dependency>
203
 
204
		<!-- Mysql connector -->
205
		<dependency>
206
			<groupId>mysql</groupId>
207
			<artifactId>mysql-connector-java</artifactId>
208
			<version>6.0.5</version>
209
		</dependency>
210
 
211
		<!-- Swagger -->
212
		<dependency>
213
			<groupId>io.springfox</groupId>
214
			<artifactId>springfox-swagger-ui</artifactId>
215
			<version>2.5.0</version>
216
		</dependency>
217
		<dependency>
218
			<groupId>io.springfox</groupId>
219
			<artifactId>springfox-swagger2</artifactId>
220
			<version>2.5.0</version>
221
		</dependency>
222
 
223
		<!-- https://mvnrepository.com/artifact/javax.mail/mail -->
224
		<dependency>
225
			<groupId>javax.mail</groupId>
226
			<artifactId>mail</artifactId>
227
			<version>1.4</version>
228
		</dependency>
229
 
230
		<dependency>
231
			<groupId>com.eclipsesource.minimal-json</groupId>
232
			<artifactId>minimal-json</artifactId>
233
			<version>0.9.4</version>
234
		</dependency>
235
 
236
		<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
237
		<dependency>
238
			<groupId>com.google.code.gson</groupId>
239
			<artifactId>gson</artifactId>
240
			<version>2.8.0</version>
241
		</dependency>
242
 
21347 kshitij.so 243
		<dependency>
244
			<groupId>in.shop2020</groupId>
245
			<artifactId>Common</artifactId>
246
			<version>1.0-SNAPSHOT</version>
247
			<exclusions>
248
				<exclusion>
249
					<groupId>readonly.slf4j</groupId>
250
					<artifactId>slf4j-api</artifactId>
251
				</exclusion>
252
				<exclusion>
253
					<groupId>readonly.slf4j</groupId>
254
					<artifactId>slf4j-simple</artifactId>
255
				</exclusion>
256
			</exclusions>
257
		</dependency>
21343 kshitij.so 258
 
259
 
21347 kshitij.so 260
 
21343 kshitij.so 261
	</dependencies>
262
 
263
 
264
</project>