Subversion Repositories SmartDukaan

Rev

Rev 7661 | Rev 12449 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8284 kshitij.so 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>AmazonFeeds</artifactId>
6
	<version>1.0-SNAPSHOT</version>
7
	<name>AmazonFeeds</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>
7468 vikram.rag 22
	</build>
8284 kshitij.so 23
 
24
	<dependencies>
25
		<dependency>
26
			<groupId>javax.activation</groupId>
27
			<artifactId>activation</artifactId>
28
			<version>1.1</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>commons-codec</groupId>
32
			<artifactId>commons-codec</artifactId>
33
			<version>1.3</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>commons-httpclient</groupId>
37
			<artifactId>commons-httpclient</artifactId>
38
			<version>3.0.1</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>commons-logging</groupId>
42
			<artifactId>commons-logging</artifactId>
43
			<version>1.1</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>org.apache.httpcomponents</groupId>
47
			<artifactId>httpclient</artifactId>
48
			<version>4.2</version>
49
		</dependency>
50
		<dependency>
51
			<groupId>org.apache.httpcomponents</groupId>
52
			<artifactId>httpcore</artifactId>
53
			<version>4.2</version>
54
		</dependency>
55
		<dependency>
56
			<groupId>javax.xml.bind</groupId>
57
			<artifactId>jaxb-api</artifactId>
58
			<version>2.1</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>javax.xml</groupId>
62
			<artifactId>jaxb-impl</artifactId>
63
			<version>2.1</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>javax.xml</groupId>
67
			<artifactId>jaxb-xjc</artifactId>
68
			<version>2.1</version>
69
		</dependency>
70
 
71
		<dependency>
72
			<groupId>javax.xml.bind</groupId>
73
			<artifactId>jsr173_api</artifactId>
74
			<version>1.0</version>
75
		</dependency>
76
		<dependency>
77
			<groupId>org.apache.thrift</groupId>
78
			<artifactId>libthrift</artifactId>
79
			<version>0.7.0</version>
80
		</dependency>
81
		<dependency>
82
			<groupId>com.google.code.maven-play-plugin.org.apache.thrift</groupId>
83
			<artifactId>thrift</artifactId>
84
			<version>0.2.0</version>
85
		</dependency>
86
		<dependency>
87
			<groupId>log4j</groupId>
88
			<artifactId>log4j</artifactId>
89
			<version>1.2.14</version>
90
		</dependency>
91
		<dependency>
92
			<groupId>org.apache.hadoop</groupId>
93
			<artifactId>libthrift</artifactId>
94
			<version>0.5.0.0</version>
95
		</dependency>
96
		<dependency>
97
			<groupId>in.shop2020</groupId>
98
			<artifactId>ThriftConfig</artifactId>
99
			<version>1.0-SNAPSHOT</version>
100
			<exclusions>
101
				<exclusion>
102
					<groupId>readonly.slf4j</groupId>
103
					<artifactId>slf4j-api</artifactId>
104
				</exclusion>
105
				<exclusion>
106
					<groupId>readonly.slf4j</groupId>
107
					<artifactId>slf4j-simple</artifactId>
108
				</exclusion>
109
			</exclusions>
110
		</dependency>
111
		<dependency>
112
			<groupId>in.shop2020</groupId>
113
			<artifactId>Common</artifactId>
114
			<version>1.0-SNAPSHOT</version>
115
			<exclusions>
116
				<exclusion>
117
					<groupId>readonly.slf4j</groupId>
118
					<artifactId>slf4j-api</artifactId>
119
				</exclusion>
120
				<exclusion>
121
					<groupId>readonly.slf4j</groupId>
122
					<artifactId>slf4j-simple</artifactId>
123
				</exclusion>
124
			</exclusions>
125
		</dependency>
126
		<dependency>
127
			<groupId>in.shop2020</groupId>
128
			<artifactId>AmazonObjects</artifactId>
129
			<version>1.0-SNAPSHOT</version>
130
		</dependency>
131
		<dependency>
132
			<groupId>readonly.apache</groupId>
133
			<artifactId>poi</artifactId>
134
			<version>3.7-20101029</version>
135
		</dependency>
136
	</dependencies>
7468 vikram.rag 137
</project>