Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

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