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>
21786 ashik.ali 60
				<exclusion>
61
					<groupId>slf4j</groupId>
62
					<artifactId>slf4j-simple</artifactId>
63
				</exclusion>
21563 ashik.ali 64
			</exclusions>
65
		</dependency>
66
		<dependency>
67
			<groupId>in.shop2020</groupId>
68
			<artifactId>ThriftConfig</artifactId>
69
			<version>1.0-SNAPSHOT</version>
70
		</dependency>
71
 
21746 ashik.ali 72
		<!-- Servlet -->
73
 
74
		<dependency>
75
			<groupId>javax.servlet</groupId>
76
			<artifactId>javax.servlet-api</artifactId>
77
			<version>3.1.0</version>
78
		</dependency>
79
		<dependency>
80
			<groupId>javax.servlet.jsp</groupId>
81
			<artifactId>jsp-api</artifactId>
82
			<version>2.2</version>
83
		</dependency>
84
 
21563 ashik.ali 85
		<!-- Logging -->
86
		<dependency>
87
			<groupId>org.slf4j</groupId>
88
			<artifactId>slf4j-api</artifactId>
89
			<version>1.7.22</version>
90
		</dependency>
91
		<dependency>
92
			<groupId>org.slf4j</groupId>
93
			<artifactId>slf4j-simple</artifactId>
94
			<version>1.7.25</version>
95
		</dependency>
96
 
97
		<!-- JWT Dependencies -->
98
		<dependency>
99
			<groupId>com.auth0</groupId>
100
			<artifactId>java-jwt</artifactId>
101
			<version>3.1.0</version>
102
		</dependency>
103
 
104
		<dependency>
105
			<groupId>javax.mail</groupId>
106
			<artifactId>mail</artifactId>
107
			<version>1.4</version>
108
		</dependency>
109
 
110
 
111
		<!-- Common io -->
112
		<dependency>
113
			<groupId>commons-io</groupId>
114
			<artifactId>commons-io</artifactId>
115
			<version>2.5</version>
116
		</dependency>
21746 ashik.ali 117
 
21563 ashik.ali 118
		<!-- Apache http client -->
119
		<dependency>
120
			<groupId>org.apache.httpcomponents</groupId>
121
			<artifactId>httpclient</artifactId>
122
			<version>4.5.3</version>
123
		</dependency>
124
 
125
		<dependency>
126
			<groupId>org.json</groupId>
127
			<artifactId>json</artifactId>
128
			<version>20131018</version>
129
		</dependency>
130
 
131
		<dependency>
132
			<groupId>com.whalin</groupId>
133
			<artifactId>Memcached-Java-Client</artifactId>
134
			<version>3.0.0</version>
135
		</dependency>
136
 
137
		<!-- Spring dependencies -->
138
		<dependency>
139
			<groupId>org.springframework</groupId>
140
			<artifactId>spring-context</artifactId>
141
			<version>4.3.5.RELEASE</version>
142
		</dependency>
143
		<dependency>
144
			<groupId>org.springframework</groupId>
145
			<artifactId>spring-web</artifactId>
146
			<version>4.3.5.RELEASE</version>
147
		</dependency>
21746 ashik.ali 148
		<dependency>
149
			<groupId>org.springframework</groupId>
150
			<artifactId>spring-webmvc</artifactId>
151
			<version>4.3.5.RELEASE</version>
152
		</dependency>
153
		<dependency>
154
			<groupId>org.springframework</groupId>
155
			<artifactId>spring-core</artifactId>
156
			<version>4.3.5.RELEASE</version>
157
		</dependency>
158
		<dependency>
159
			<groupId>org.springframework</groupId>
160
			<artifactId>spring-beans</artifactId>
161
			<version>4.3.5.RELEASE</version>
162
		</dependency>
21563 ashik.ali 163
 
164
		<dependency>
165
			<groupId>org.jsoup</groupId>
166
			<artifactId>jsoup</artifactId>
167
			<version>1.8.3</version>
168
		</dependency>
21694 ashik.ali 169
 
21746 ashik.ali 170
		<!-- Itext pdf -->
171
		<dependency>
172
	    	<groupId>com.itextpdf</groupId>
173
	    	<artifactId>itextpdf</artifactId>
174
	    	<version>5.0.6</version>
21786 ashik.ali 175
	    	<exclusions>
176
				<exclusion>
177
					<groupId>org.bouncycastle</groupId>
178
					<artifactId>bcprov-jdk14</artifactId>
179
				</exclusion>
180
			</exclusions>
21746 ashik.ali 181
		</dependency>
21694 ashik.ali 182
 
21746 ashik.ali 183
		<dependency>
184
			<groupId>dom4j</groupId>
185
			<artifactId>dom4j</artifactId>
186
			<version>1.6</version>
187
		</dependency>
188
 
21747 ashik.ali 189
		<!-- Json parsing -->
190
		<dependency>
191
			<groupId>com.fasterxml.jackson.core</groupId>
192
			<artifactId>jackson-core</artifactId>
193
			<version>2.8.5</version>
194
		</dependency>
195
		<dependency>
196
			<groupId>com.fasterxml.jackson.core</groupId>
197
			<artifactId>jackson-databind</artifactId>
198
			<version>2.8.5</version>
199
		</dependency>
200
 
21764 ashik.ali 201
		<dependency>
202
    		<groupId>commons-collections</groupId>
203
    		<artifactId>commons-collections</artifactId>
204
    		<version>3.0</version>
205
		</dependency>
21747 ashik.ali 206
 
21786 ashik.ali 207
		<!-- Excel -->
208
		<dependency>
209
    		<groupId>org.apache.poi</groupId>
210
    		<artifactId>poi</artifactId>
211
    		<version>3.16</version>
212
		</dependency>
213
 
214
		<dependency>
215
    		<groupId>org.apache.poi</groupId>
216
    		<artifactId>poi-ooxml</artifactId>
217
    		<version>3.16</version>
218
		</dependency>
219
 
21563 ashik.ali 220
	</dependencies>
221
 
222
</project>