Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
8285 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>AmazonReports</artifactId>
6
	<version>1.0-SNAPSHOT</version>
7
	<name>AmazonReports</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>
8224 manish.sha 22
	</build>
8285 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.0EA3</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
		</dependency>
101
		<dependency>
102
			<groupId>in.shop2020</groupId>
103
			<artifactId>Common</artifactId>
104
			<version>1.0-SNAPSHOT</version>
105
		</dependency>
106
		<dependency>
107
			<groupId>net.sf.opencsv</groupId>
108
			<artifactId>opencsv</artifactId>
109
			<version>2.3</version>
110
		</dependency>
111
		<dependency>
112
			<groupId>readonly.apache</groupId>
113
			<artifactId>poi</artifactId>
114
			<version>3.7-20101029</version>
115
		</dependency>
8673 kshitij.so 116
                <dependency>
117
    <groupId>org.apache.poi</groupId>
118
    <artifactId>poi-ooxml</artifactId>
119
    <version>3.9</version>
120
</dependency>
9786 manish.sha 121
<dependency>
122
			<groupId>readonly.apache</groupId>
123
			<artifactId>commons-io</artifactId>
124
			<version>1.3.2</version>
125
		</dependency>
8285 kshitij.so 126
	</dependencies>
8224 manish.sha 127
</project>