Subversion Repositories SmartDukaan

Rev

Rev 9718 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8616 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>SnapDealFeeds</artifactId>
6
	<version>1.0-SNAPSHOT</version>
7
	<name>SnapDealFeeds</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>javax.xml.bind</groupId>
27
			<artifactId>jaxb-api</artifactId>
28
			<version>2.1</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>org.apache.thrift</groupId>
32
			<artifactId>libthrift</artifactId>
33
			<version>0.7.0</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>in.shop2020</groupId>
37
			<artifactId>ThriftConfig</artifactId>
38
			<version>1.0-SNAPSHOT</version>
39
			<exclusions>
40
				<exclusion>
41
					<groupId>readonly.slf4j</groupId>
42
					<artifactId>slf4j-api</artifactId>
43
				</exclusion>
44
				<exclusion>
45
					<groupId>readonly.slf4j</groupId>
46
					<artifactId>slf4j-simple</artifactId>
47
				</exclusion>
48
			</exclusions>
49
		</dependency>
50
		<dependency>
51
			<groupId>in.shop2020</groupId>
52
			<artifactId>Common</artifactId>
53
			<version>1.0-SNAPSHOT</version>
54
			<exclusions>
55
				<exclusion>
56
					<groupId>readonly.slf4j</groupId>
57
					<artifactId>slf4j-api</artifactId>
58
				</exclusion>
59
				<exclusion>
60
					<groupId>readonly.slf4j</groupId>
61
					<artifactId>slf4j-simple</artifactId>
62
				</exclusion>
63
			</exclusions>
64
		</dependency>
65
		<dependency>
9718 manish.sha 66
			<groupId>readonly.slf4j</groupId>
67
			<artifactId>slf4j-api</artifactId>
68
			<version>1.5.8</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>readonly.slf4j</groupId>
72
			<artifactId>slf4j-simple</artifactId>
73
			<version>1.5.8</version>
74
		</dependency>
75
		<dependency>
8616 vikram.rag 76
			<groupId>com.jcraft</groupId>
77
			<artifactId>jsch</artifactId>
78
			<version>0.1.48</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>ant</groupId>
82
			<artifactId>ant-jsch</artifactId>
83
			<version>1.6.5</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>org.apache.ant</groupId>
87
			<artifactId>ant</artifactId>
88
			<version>1.7.0</version>
89
		</dependency>
8632 vikram.rag 90
		<dependency>
8635 vikram.rag 91
			<groupId>org.codehaus.groovy.maven.support</groupId>
92
			<artifactId>ant-launcher-1.7.0</artifactId>
93
			<version>1.0-rc-2</version>
94
		</dependency>
9404 vikram.rag 95
		<dependency>
96
			<groupId>readonly.apache</groupId>
97
			<artifactId>poi</artifactId>
98
			<version>3.7-20101029</version>
99
		</dependency>
100
		<dependency>
101
			<groupId>org.apache.httpcomponents</groupId>
102
			<artifactId>httpmime</artifactId>
103
			<version>4.2.1</version>
104
		</dependency>
9932 manish.sha 105
		<dependency>
106
			<groupId>commons-httpclient</groupId>
107
			<artifactId>commons-httpclient</artifactId>
108
			<version>3.0.1</version>
109
		</dependency>
8616 vikram.rag 110
	</dependencies>
111
</project>
112