Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21272 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
	</properties>
12
	<build>
13
		<plugins>
14
			<plugin>
15
				<groupId>org.apache.maven.plugins</groupId>
16
				<artifactId>maven-compiler-plugin</artifactId>
17
				<version>3.6.1</version>
18
				<configuration>
19
					<source>1.8</source>
20
					<target>1.8</target>
21
				</configuration>
22
 
23
			</plugin>
24
			<plugin>
25
				<groupId>org.apache.maven.plugins</groupId>
26
				<artifactId>maven-dependency-plugin</artifactId>
27
				<executions>
28
					<execution>
29
						<id>copy-dependencies</id>
30
						<phase>package</phase>
31
						<goals>
32
							<goal>copy-dependencies</goal>
33
						</goals>
34
						<configuration>
35
							<outputDirectory>${project.build.directory}</outputDirectory>
36
							<overWriteReleases>false</overWriteReleases>
37
							<overWriteSnapshots>true</overWriteSnapshots>
38
						</configuration>
39
					</execution>
40
				</executions>
41
			</plugin>
42
		</plugins>
43
	</build>
44
	<dependencies>
45
		<!-- Spring dependencies -->
46
		<dependency>
47
			<groupId>org.springframework</groupId>
48
			<artifactId>spring-context</artifactId>
49
			<version>4.3.5.RELEASE</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>org.springframework</groupId>
53
			<artifactId>spring-web</artifactId>
54
			<version>4.3.5.RELEASE</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.springframework</groupId>
58
			<artifactId>spring-core</artifactId>
59
			<version>4.3.5.RELEASE</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>org.springframework</groupId>
63
			<artifactId>spring-webmvc</artifactId>
64
			<version>4.3.5.RELEASE</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>org.springframework</groupId>
68
			<artifactId>spring-beans</artifactId>
69
			<version>4.3.5.RELEASE</version>
70
		</dependency>
71
		<dependency>
72
			<groupId>org.springframework</groupId>
73
			<artifactId>spring-tx</artifactId>
74
			<version>4.3.5.RELEASE</version>
75
		</dependency>
76
 
77
		<!-- Hibernate dependencies -->
78
		<dependency>
79
			<groupId>org.hibernate</groupId>
80
			<artifactId>hibernate-core</artifactId>
81
			<version>5.2.5.Final</version>
82
		</dependency>
83
		<dependency>
84
			<groupId>org.hibernate</groupId>
85
			<artifactId>hibernate-entitymanager</artifactId>
86
			<version>5.2.5.Final</version>
87
		</dependency>
88
		<dependency>
89
			<groupId>org.hibernate.javax.persistence</groupId>
90
			<artifactId>hibernate-jpa-2.1-api</artifactId>
91
			<version>1.0.0.Final</version>
92
		</dependency>
93
		<dependency>
94
			<groupId>org.hibernate.common</groupId>
95
			<artifactId>hibernate-commons-annotations</artifactId>
96
			<version>5.0.1.Final</version>
97
		</dependency>
98
		<dependency>
99
			<groupId>org.jboss.logging</groupId>
100
			<artifactId>jboss-logging</artifactId>
101
			<version>3.3.0.Final</version>
102
		</dependency>
103
 
104
		<!-- Servlet and jsp dependencies -->
105
		<dependency>
106
			<groupId>javax.servlet</groupId>
107
			<artifactId>javax.servlet-api</artifactId>
108
			<version>3.1.0</version>
109
		</dependency>
110
		<dependency>
111
			<groupId>javax.servlet.jsp</groupId>
112
			<artifactId>jsp-api</artifactId>
113
			<version>2.2</version>
114
		</dependency>
115
		<dependency>
116
			<groupId>javax.servlet</groupId>
117
			<artifactId>javax.servlet-api</artifactId>
118
			<version>3.1.0</version>
119
		</dependency>
120
		<!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
121
		<dependency>
122
			<groupId>javax.servlet</groupId>
123
			<artifactId>jstl</artifactId>
124
			<version>1.2</version>
125
		</dependency>
126
 
127
		<!-- https://mvnrepository.com/artifact/taglibs/standard -->
128
		<dependency>
129
			<groupId>taglibs</groupId>
130
			<artifactId>standard</artifactId>
131
			<version>1.1.2</version>
132
		</dependency>
133
 
134
 
135
 
136
		<!-- File upload api -->
137
		<dependency>
138
			<groupId>commons-fileupload</groupId>
139
			<artifactId>commons-fileupload</artifactId>
140
			<version>1.3</version>
141
		</dependency>
142
 
143
		<!-- Apache common lang -->
144
		<dependency>
145
			<groupId>org.apache.commons</groupId>
146
			<artifactId>commons-lang3</artifactId>
147
			<version>3.5</version>
148
		</dependency>
149
 
150
		<!-- Logging -->
151
		<dependency>
152
			<groupId>org.slf4j</groupId>
153
			<artifactId>slf4j-api</artifactId>
154
			<version>1.7.22</version>
155
		</dependency>
156
 
157
		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
158
		<dependency>
159
			<groupId>org.slf4j</groupId>
160
			<artifactId>slf4j-simple</artifactId>
161
			<version>1.7.25</version>
162
		</dependency>
163
 
164
 
165
		<!-- Json parsing -->
166
		<dependency>
167
			<groupId>com.fasterxml.jackson.core</groupId>
168
			<artifactId>jackson-core</artifactId>
169
			<version>2.8.5</version>
170
		</dependency>
171
		<dependency>
172
			<groupId>com.fasterxml.jackson.core</groupId>
173
			<artifactId>jackson-databind</artifactId>
174
			<version>2.8.5</version>
175
		</dependency>
176
 
177
 
178
		<!-- Common io -->
179
		<dependency>
180
			<groupId>commons-io</groupId>
181
			<artifactId>commons-io</artifactId>
182
			<version>2.5</version>
183
		</dependency>
184
 
185
		<!-- Mysql connector -->
186
		<dependency>
187
			<groupId>mysql</groupId>
188
			<artifactId>mysql-connector-java</artifactId>
189
			<version>6.0.5</version>
190
		</dependency>
191
 
192
		<!-- Swagger -->
193
		<dependency>
194
            <groupId>io.springfox</groupId>
195
            <artifactId>springfox-swagger-ui</artifactId>
196
            <version>2.5.0</version>
197
        </dependency>
198
		<dependency>
199
			<groupId>io.springfox</groupId>
200
			<artifactId>springfox-swagger2</artifactId>
201
			<version>2.5.0</version>
202
		</dependency>
203
 
204
	</dependencies>
205
</project>