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
 
68
		<!-- Logging -->
69
		<dependency>
70
			<groupId>org.slf4j</groupId>
71
			<artifactId>slf4j-api</artifactId>
72
			<version>1.7.22</version>
73
		</dependency>
74
		<dependency>
75
			<groupId>org.slf4j</groupId>
76
			<artifactId>slf4j-simple</artifactId>
77
			<version>1.7.25</version>
78
		</dependency>
79
 
80
		<!-- JWT Dependencies -->
81
		<dependency>
82
			<groupId>com.auth0</groupId>
83
			<artifactId>java-jwt</artifactId>
84
			<version>3.1.0</version>
85
		</dependency>
86
 
87
		<dependency>
88
			<groupId>javax.mail</groupId>
89
			<artifactId>mail</artifactId>
90
			<version>1.4</version>
91
		</dependency>
92
 
93
 
94
		<!-- Common io -->
95
		<dependency>
96
			<groupId>commons-io</groupId>
97
			<artifactId>commons-io</artifactId>
98
			<version>2.5</version>
99
		</dependency>
100
		<!-- Apache http client -->
101
		<dependency>
102
			<groupId>org.apache.httpcomponents</groupId>
103
			<artifactId>httpclient</artifactId>
104
			<version>4.5.3</version>
105
		</dependency>
106
 
107
		<dependency>
108
			<groupId>org.json</groupId>
109
			<artifactId>json</artifactId>
110
			<version>20131018</version>
111
		</dependency>
112
 
113
		<dependency>
114
			<groupId>com.whalin</groupId>
115
			<artifactId>Memcached-Java-Client</artifactId>
116
			<version>3.0.0</version>
117
		</dependency>
118
 
119
		<!-- Spring dependencies -->
120
		<dependency>
121
			<groupId>org.springframework</groupId>
122
			<artifactId>spring-context</artifactId>
123
			<version>4.3.5.RELEASE</version>
124
		</dependency>
125
		<dependency>
126
			<groupId>org.springframework</groupId>
127
			<artifactId>spring-web</artifactId>
128
			<version>4.3.5.RELEASE</version>
129
		</dependency>
130
 
131
		<dependency>
132
			<groupId>org.jsoup</groupId>
133
			<artifactId>jsoup</artifactId>
134
			<version>1.8.3</version>
135
		</dependency>
21694 ashik.ali 136
 
137
	<dependency>
138
	    <groupId>com.itextpdf</groupId>
139
	    <artifactId>itextpdf</artifactId>
140
	    <version>5.0.6</version>
141
	</dependency>
142
 
21563 ashik.ali 143
	</dependencies>
144
 
21694 ashik.ali 145
 
146
 
21563 ashik.ali 147
 
148
</project>