Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
12455 kshitij.so 1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2
  <modelVersion>4.0.0</modelVersion>
3
  <groupId>in.shop2020</groupId>
4
  <artifactId>AmazonFeeds</artifactId>
5
  <version>1.0-SNAPSHOT</version>
6
  <name>AmazonFeeds</name>
7
  <packaging>jar</packaging>
8
       <build>
9
              <plugins>
10
  		<plugin>
11
  			<artifactId>maven-compiler-plugin</artifactId>
12
  			<version>2.4</version>
13
  			<configuration>
14
  			    <debug>true</debug>
15
         		<optimize>true</optimize>
16
          		<source>1.6</source>
17
          		<target>1.6</target> 			    
18
  			</configuration>
19
  		</plugin>
20
	  	</plugins>
7468 vikram.rag 21
	</build>
12455 kshitij.so 22
 
23
  <dependencies>
24
  	<dependency>
25
  		<groupId>javax.activation</groupId>
26
  		<artifactId>activation</artifactId>
27
  		<version>1.1</version>
28
  	</dependency>
29
  	<dependency>
30
  		<groupId>commons-codec</groupId>
31
  		<artifactId>commons-codec</artifactId>
32
  		<version>1.3</version>
33
  	</dependency>
34
  	<dependency>
35
  		<groupId>commons-httpclient</groupId>
36
  		<artifactId>commons-httpclient</artifactId>
37
  		<version>3.0.1</version>
38
  	</dependency>
39
  	<dependency>
40
  		<groupId>commons-logging</groupId>
41
  		<artifactId>commons-logging</artifactId>
42
  		<version>1.1</version>
43
  	</dependency>
44
  	<dependency>
45
  		<groupId>org.apache.httpcomponents</groupId>
46
  		<artifactId>httpclient</artifactId>
47
  		<version>4.2</version>
48
  	</dependency>
49
  	<dependency>
50
  		<groupId>org.apache.httpcomponents</groupId>
51
  		<artifactId>httpcore</artifactId>
52
  		<version>4.2</version>
53
  	</dependency>
54
  	<dependency>
55
                <groupId>javax.xml.bind</groupId>
56
                <artifactId>jaxb-api</artifactId>
57
                <version>2.1</version>
58
  	</dependency>
59
  	  	<dependency>
60
  		<groupId>javax.xml</groupId>
61
  		<artifactId>jaxb-impl</artifactId>
62
  		<version>2.1</version>
63
  	</dependency>
64
        <dependency>
65
	<groupId>javax.xml</groupId>
66
	<artifactId>jaxb-xjc</artifactId>
67
	<version>2.1</version>
68
</dependency>
69
 
70
  	<dependency>
71
  		<groupId>javax.xml.bind</groupId>
72
  		<artifactId>jsr173_api</artifactId>
73
  		<version>1.0</version>
74
  	</dependency>
75
                <dependency>
76
                        <groupId>org.apache.thrift</groupId>
77
                        <artifactId>libthrift</artifactId>
78
                        <version>0.7.0</version>
79
                </dependency>
80
  	<dependency>
81
  		<groupId>com.google.code.maven-play-plugin.org.apache.thrift</groupId>
82
  		<artifactId>thrift</artifactId>
83
  		<version>0.2.0</version>
84
  	</dependency>
85
  	<dependency>
86
  		<groupId>log4j</groupId>
87
  		<artifactId>log4j</artifactId>
88
  		<version>1.2.14</version>
89
  	</dependency>
90
  	<dependency>
91
  		<groupId>org.apache.hadoop</groupId>
92
  		<artifactId>libthrift</artifactId>
93
  		<version>0.5.0.0</version>
94
  	</dependency>
95
  	<dependency>
96
		<groupId>in.shop2020</groupId>
97
                        <artifactId>ThriftConfig</artifactId>
98
                        <version>1.0-SNAPSHOT</version>
99
                        <exclusions>
100
                                <exclusion>
101
                                        <groupId>readonly.slf4j</groupId>
102
                                        <artifactId>slf4j-api</artifactId>
103
                                </exclusion>
104
                                <exclusion>
105
                                        <groupId>readonly.slf4j</groupId>
106
                                        <artifactId>slf4j-simple</artifactId>
107
                                </exclusion>
108
                        </exclusions>
109
                </dependency>
110
                <dependency>
111
                        <groupId>in.shop2020</groupId>
112
                        <artifactId>Common</artifactId>
113
                        <version>1.0-SNAPSHOT</version>
114
                        <exclusions>
115
                                <exclusion>
116
                                        <groupId>readonly.slf4j</groupId>
117
                                        <artifactId>slf4j-api</artifactId>
118
                                </exclusion>
119
                                <exclusion>
120
                                        <groupId>readonly.slf4j</groupId>
121
                                        <artifactId>slf4j-simple</artifactId>
122
                                </exclusion>
123
                        </exclusions>
124
                </dependency>
125
	        <dependency>
126
                        <groupId>in.shop2020</groupId>
127
                        <artifactId>AmazonObjects</artifactId>
128
                        <version>1.0-SNAPSHOT</version>
129
                </dependency>
130
 <dependency>
131
      <groupId>readonly.apache</groupId>
132
      <artifactId>poi</artifactId>
133
      <version>3.7-20101029</version>
134
    </dependency>
135
  </dependencies>
7468 vikram.rag 136
</project>