Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21563 ashik.ali 1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2
  <modelVersion>4.0.0</modelVersion>
3
  <groupId>com.profitmandi</groupId>
4
  <artifactId>profitmandi-common</artifactId>
5
  <version>0.0.1-SNAPSHOT</version>
6
  <name>profitmandi-common</name>
7
  <build>
8
		<resources>
9
			<resource>
10
				<directory>src/main/resources</directory>
11
				<filtering>true</filtering>
12
			</resource>
13
		</resources>
14
		<plugins>
15
			<plugin>
16
				<groupId>org.apache.maven.plugins</groupId>
17
				<artifactId>maven-compiler-plugin</artifactId>
18
				<version>3.6.1</version>
19
				<configuration>
20
					<source>1.8</source>
21
					<target>1.8</target>
22
				</configuration>
23
 
24
			</plugin>
25
			<plugin>
26
				<groupId>org.apache.maven.plugins</groupId>
27
				<artifactId>maven-dependency-plugin</artifactId>
28
				<executions>
29
					<execution>
30
						<id>copy-dependencies</id>
31
						<phase>package</phase>
32
						<goals>
33
							<goal>copy-dependencies</goal>
34
						</goals>
35
						<configuration>
36
							<outputDirectory>${project.build.directory}</outputDirectory>
37
							<overWriteReleases>false</overWriteReleases>
38
							<overWriteSnapshots>true</overWriteSnapshots>
39
						</configuration>
40
					</execution>
41
				</executions>
42
			</plugin>
43
		</plugins>
44
	</build>
45
	<dependencies>
46
		<!-- Internal Dependencies -->
47
		<dependency>
48
			<groupId>org.apache.thrift</groupId>
49
			<artifactId>libthrift</artifactId>
50
			<version>0.7.0</version>
51
			<exclusions>
52
				<exclusion>
53
					<groupId>commons-codec</groupId>
54
					<artifactId>commons-codec</artifactId>
55
				</exclusion>
56
				<exclusion>
57
					<groupId>javax.servlet</groupId>
58
					<artifactId>servlet-api</artifactId>
59
				</exclusion>
60
			</exclusions>
61
		</dependency>
62
		<dependency>
63
			<groupId>in.shop2020</groupId>
64
			<artifactId>ThriftConfig</artifactId>
65
			<version>1.0-SNAPSHOT</version>
66
		</dependency>
67
 
21746 ashik.ali 68
		<!-- Servlet -->
69
 
70
		<dependency>
71
			<groupId>javax.servlet</groupId>
72
			<artifactId>javax.servlet-api</artifactId>
73
			<version>3.1.0</version>
74
		</dependency>
75
		<dependency>
76
			<groupId>javax.servlet.jsp</groupId>
77
			<artifactId>jsp-api</artifactId>
78
			<version>2.2</version>
79
		</dependency>
80
 
21563 ashik.ali 81
		<!-- Logging -->
82
		<dependency>
83
			<groupId>org.slf4j</groupId>
84
			<artifactId>slf4j-api</artifactId>
85
			<version>1.7.22</version>
86
		</dependency>
87
		<dependency>
88
			<groupId>org.slf4j</groupId>
89
			<artifactId>slf4j-simple</artifactId>
90
			<version>1.7.25</version>
91
		</dependency>
92
 
93
		<!-- JWT Dependencies -->
94
		<dependency>
95
			<groupId>com.auth0</groupId>
96
			<artifactId>java-jwt</artifactId>
97
			<version>3.1.0</version>
98
		</dependency>
99
 
100
		<dependency>
101
			<groupId>javax.mail</groupId>
102
			<artifactId>mail</artifactId>
103
			<version>1.4</version>
104
		</dependency>
105
 
106
 
107
		<!-- Common io -->
108
		<dependency>
109
			<groupId>commons-io</groupId>
110
			<artifactId>commons-io</artifactId>
111
			<version>2.5</version>
112
		</dependency>
21746 ashik.ali 113
 
21563 ashik.ali 114
		<!-- Apache http client -->
115
		<dependency>
116
			<groupId>org.apache.httpcomponents</groupId>
117
			<artifactId>httpclient</artifactId>
118
			<version>4.5.3</version>
119
		</dependency>
120
 
121
		<dependency>
122
			<groupId>org.json</groupId>
123
			<artifactId>json</artifactId>
124
			<version>20131018</version>
125
		</dependency>
126
 
127
		<dependency>
128
			<groupId>com.whalin</groupId>
129
			<artifactId>Memcached-Java-Client</artifactId>
130
			<version>3.0.0</version>
131
		</dependency>
132
 
133
		<!-- Spring dependencies -->
134
		<dependency>
135
			<groupId>org.springframework</groupId>
136
			<artifactId>spring-context</artifactId>
137
			<version>4.3.5.RELEASE</version>
138
		</dependency>
139
		<dependency>
140
			<groupId>org.springframework</groupId>
141
			<artifactId>spring-web</artifactId>
142
			<version>4.3.5.RELEASE</version>
143
		</dependency>
21746 ashik.ali 144
		<dependency>
145
			<groupId>org.springframework</groupId>
146
			<artifactId>spring-webmvc</artifactId>
147
			<version>4.3.5.RELEASE</version>
148
		</dependency>
149
		<dependency>
150
			<groupId>org.springframework</groupId>
151
			<artifactId>spring-core</artifactId>
152
			<version>4.3.5.RELEASE</version>
153
		</dependency>
154
		<dependency>
155
			<groupId>org.springframework</groupId>
156
			<artifactId>spring-beans</artifactId>
157
			<version>4.3.5.RELEASE</version>
158
		</dependency>
21563 ashik.ali 159
 
160
		<dependency>
161
			<groupId>org.jsoup</groupId>
162
			<artifactId>jsoup</artifactId>
163
			<version>1.8.3</version>
164
		</dependency>
21694 ashik.ali 165
 
21746 ashik.ali 166
		<!-- Itext pdf -->
167
		<dependency>
168
	    	<groupId>com.itextpdf</groupId>
169
	    	<artifactId>itextpdf</artifactId>
170
	    	<version>5.0.6</version>
171
		</dependency>
21694 ashik.ali 172
 
21746 ashik.ali 173
		<dependency>
174
			<groupId>dom4j</groupId>
175
			<artifactId>dom4j</artifactId>
176
			<version>1.6</version>
177
		</dependency>
178
 
21747 ashik.ali 179
		<!-- Json parsing -->
180
		<dependency>
181
			<groupId>com.fasterxml.jackson.core</groupId>
182
			<artifactId>jackson-core</artifactId>
183
			<version>2.8.5</version>
184
		</dependency>
185
		<dependency>
186
			<groupId>com.fasterxml.jackson.core</groupId>
187
			<artifactId>jackson-databind</artifactId>
188
			<version>2.8.5</version>
189
		</dependency>
190
 
191
 
21563 ashik.ali 192
	</dependencies>
193
 
194
</project>