Subversion Repositories SmartDukaan

Rev

Rev 10147 | 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>
13127 kshitij.so 30
                <dependency>
31
                <groupId>org.mongodb</groupId>
32
                <artifactId>mongo-java-driver</artifactId>
33
                <version>2.12.2</version>
34
        </dependency>
35
 
8285 kshitij.so 36
		<dependency>
37
			<groupId>commons-codec</groupId>
38
			<artifactId>commons-codec</artifactId>
39
			<version>1.3</version>
40
		</dependency>
41
		<dependency>
42
			<groupId>commons-httpclient</groupId>
43
			<artifactId>commons-httpclient</artifactId>
44
			<version>3.0.1</version>
45
		</dependency>
46
		<dependency>
47
			<groupId>commons-logging</groupId>
48
			<artifactId>commons-logging</artifactId>
49
			<version>1.1</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>org.apache.httpcomponents</groupId>
53
			<artifactId>httpclient</artifactId>
54
			<version>4.2</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.apache.httpcomponents</groupId>
58
			<artifactId>httpcore</artifactId>
59
			<version>4.2</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>javax.xml.bind</groupId>
63
			<artifactId>jaxb-api</artifactId>
64
			<version>2.1</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>javax.xml</groupId>
68
			<artifactId>jaxb-impl</artifactId>
69
			<version>2.1</version>
70
		</dependency>
71
		<dependency>
72
			<groupId>javax.xml</groupId>
73
			<artifactId>jaxb-xjc</artifactId>
74
			<version>2.0EA3</version>
75
		</dependency>
76
 
77
		<dependency>
78
			<groupId>javax.xml.bind</groupId>
79
			<artifactId>jsr173_api</artifactId>
80
			<version>1.0</version>
81
		</dependency>
82
		<dependency>
83
			<groupId>org.apache.thrift</groupId>
84
			<artifactId>libthrift</artifactId>
85
			<version>0.7.0</version>
86
		</dependency>
87
		<dependency>
88
			<groupId>com.google.code.maven-play-plugin.org.apache.thrift</groupId>
89
			<artifactId>thrift</artifactId>
90
			<version>0.2.0</version>
91
		</dependency>
92
		<dependency>
93
			<groupId>log4j</groupId>
94
			<artifactId>log4j</artifactId>
95
			<version>1.2.14</version>
96
		</dependency>
97
		<dependency>
98
			<groupId>org.apache.hadoop</groupId>
99
			<artifactId>libthrift</artifactId>
100
			<version>0.5.0.0</version>
101
		</dependency>
102
		<dependency>
103
			<groupId>in.shop2020</groupId>
104
			<artifactId>ThriftConfig</artifactId>
105
			<version>1.0-SNAPSHOT</version>
106
		</dependency>
107
		<dependency>
108
			<groupId>in.shop2020</groupId>
109
			<artifactId>Common</artifactId>
110
			<version>1.0-SNAPSHOT</version>
111
		</dependency>
112
		<dependency>
113
			<groupId>net.sf.opencsv</groupId>
114
			<artifactId>opencsv</artifactId>
115
			<version>2.3</version>
116
		</dependency>
117
		<dependency>
118
			<groupId>readonly.apache</groupId>
119
			<artifactId>poi</artifactId>
120
			<version>3.7-20101029</version>
121
		</dependency>
10147 vikram.rag 122
		<dependency>
123
			<groupId>org.apache.poi</groupId>
124
			<artifactId>poi-ooxml</artifactId>
125
			<version>3.9</version>
126
		</dependency>
127
		<dependency>
9786 manish.sha 128
			<groupId>readonly.apache</groupId>
129
			<artifactId>commons-io</artifactId>
130
			<version>1.3.2</version>
131
		</dependency>
8285 kshitij.so 132
	</dependencies>
8224 manish.sha 133
</project>