Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9947 vikram.rag 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>in.shop2020</groupId>
5
	<artifactId>FlipkartFeeds</artifactId>
6
	<version>1.0-SNAPSHOT</version>
7
	<name>FlipkartFeeds</name>
8
	<packaging>jar</packaging>
9
	<build>
10
		<plugins>
11
			<plugin>
12
				<artifactId>maven-compiler-plugin</artifactId>
13
				<version>2.4</version>
14
				<configuration>
15
					<debug>true</debug>
16
					<optimize>true</optimize>
17
					<source>1.6</source>
18
					<target>1.6</target>
19
				</configuration>
20
			</plugin>
21
		</plugins>
22
	</build>
23
 
24
	<dependencies>
25
		<dependency>
26
			<groupId>org.apache.thrift</groupId>
27
			<artifactId>libthrift</artifactId>
28
			<version>0.7.0</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>in.shop2020</groupId>
32
			<artifactId>ThriftConfig</artifactId>
33
			<version>1.0-SNAPSHOT</version>
34
			<exclusions>
35
				<exclusion>
36
					<groupId>readonly.slf4j</groupId>
37
					<artifactId>slf4j-api</artifactId>
38
				</exclusion>
39
				<exclusion>
40
					<groupId>readonly.slf4j</groupId>
41
					<artifactId>slf4j-simple</artifactId>
42
				</exclusion>
43
			</exclusions>
44
		</dependency>
45
		<dependency>
46
			<groupId>in.shop2020</groupId>
47
			<artifactId>Common</artifactId>
48
			<version>1.0-SNAPSHOT</version>
49
			<exclusions>
50
				<exclusion>
51
					<groupId>readonly.slf4j</groupId>
52
					<artifactId>slf4j-api</artifactId>
53
				</exclusion>
54
				<exclusion>
55
					<groupId>readonly.slf4j</groupId>
56
					<artifactId>slf4j-simple</artifactId>
57
				</exclusion>
58
			</exclusions>
59
		</dependency>
60
		<dependency>
61
			<groupId>readonly.slf4j</groupId>
62
			<artifactId>slf4j-api</artifactId>
63
			<version>1.5.8</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>readonly.slf4j</groupId>
67
			<artifactId>slf4j-simple</artifactId>
68
			<version>1.5.8</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>org.apache.httpcomponents</groupId>
72
			<artifactId>httpmime</artifactId>
73
			<version>4.2.1</version>
74
		</dependency>
75
	</dependencies>
76
</project>
77