Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
1023 chandransh 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/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <groupId>in.shop2020</groupId>
5
  <artifactId>Support</artifactId>
6
  <packaging>war</packaging>
7
  <version>1.0-SNAPSHOT</version>
8
 
9
  <name>Supporting services</name>
10
  <url>http://shop2020.in</url>
11
 
12
  <parent>
13
    <groupId>in.shop2020</groupId>
14
    <artifactId>parent</artifactId>
15
    <version>1.0-SNAPSHOT</version>
16
  </parent>
17
 
18
  <build>
19
    <plugins>
20
      <plugin>
21
        <groupId>org.apache.maven.plugins</groupId>
22
        <artifactId>maven-compiler-plugin</artifactId>
1283 chandransh 23
        <version>2.3.2</version>
1023 chandransh 24
        <configuration>
25
          <debug>true</debug>
26
          <optimize>true</optimize>
27
          <source>1.6</source>
28
          <target>1.6</target>
29
        </configuration>
30
      </plugin>
31
    </plugins>
32
  </build>
33
 
34
  <dependencies>
3435 rajveer 35
  <dependency>
36
  		<groupId>org.apache.thrift</groupId>
37
  		<artifactId>libthrift</artifactId>
38
  		<version>0.7.0</version>
39
        <exclusions>
40
        <exclusion>
41
		    <groupId>commons-codec</groupId>
42
  			<artifactId>commons-codec</artifactId>
43
        </exclusion>
44
        </exclusions>
45
	</dependency>
46
 
1023 chandransh 47
    <dependency>
48
      <groupId>readonly</groupId>
49
      <artifactId>iText</artifactId>
50
      <version>5.0.4</version>
51
    </dependency>
52
    <dependency>
53
      <groupId>readonly.apache</groupId>
54
      <artifactId>poi</artifactId>
55
      <version>3.7-20101029</version>
56
    </dependency>
57
    <dependency>
5020 varun.gupt 58
      <groupId>org.apache.poi</groupId>
59
      <artifactId>poi-ooxml</artifactId>
60
      <version>3.8</version>
61
    </dependency>
62
    <dependency>
2784 chandransh 63
      <groupId>com.ibm.icu</groupId>
64
      <artifactId>icu4j</artifactId>
65
      <version>4.8</version>
66
	</dependency>  
67
    <dependency>
1023 chandransh 68
      <groupId>readonly.apache</groupId>
69
      <artifactId>servlet-api</artifactId>
70
      <version>2.5</version>
71
      <scope>provided</scope>
72
    </dependency>
73
    <dependency>
74
      <groupId>readonly.apache.struts</groupId>
75
      <artifactId>struts2-convention-plugin</artifactId>
76
      <version>2.1.8.1</version>
77
    </dependency>
78
    <dependency>
79
      <groupId>readonly.apache.struts</groupId>
80
      <artifactId>struts2-core</artifactId>
81
      <version>2.1.8.1</version>
82
    </dependency>
83
    <dependency>
84
      <groupId>readonly.apache.struts</groupId>
85
      <artifactId>struts2-rest-plugin</artifactId>
86
      <version>2.1.8.1</version>
87
    </dependency>
88
    <dependency>
89
      <groupId>readonly.apache.struts</groupId>
90
      <artifactId>xstream</artifactId>
91
      <version>1.2.2</version>
92
    </dependency>
93
    <dependency>
94
      <groupId>readonly.apache.struts</groupId>
95
      <artifactId>xwork-core</artifactId>
96
      <version>2.1.6</version>
97
    </dependency>
98
    <dependency>
99
      <groupId>in.shop2020</groupId>
100
      <artifactId>ThriftConfig</artifactId>
101
      <version>1.0-SNAPSHOT</version>
2784 chandransh 102
      <exclusions>
103
        <exclusion>
104
          <groupId>readonly.slf4j</groupId>
105
          <artifactId>slf4j-api</artifactId>
106
        </exclusion>
107
        <exclusion>
108
          <groupId>readonly.slf4j</groupId>
109
          <artifactId>slf4j-simple</artifactId>
110
        </exclusion>
111
      </exclusions>
1023 chandransh 112
    </dependency>
113
    <dependency>
114
      <groupId>in.shop2020</groupId>
115
      <artifactId>Common</artifactId>
116
      <version>1.0-SNAPSHOT</version>
2784 chandransh 117
      <exclusions>
118
        <exclusion>
119
          <groupId>readonly.slf4j</groupId>
120
          <artifactId>slf4j-api</artifactId>
121
        </exclusion>
122
        <exclusion>
123
          <groupId>readonly.slf4j</groupId>
124
          <artifactId>slf4j-simple</artifactId>
125
        </exclusion>
126
      </exclusions>
1023 chandransh 127
    </dependency>
1027 chandransh 128
	<!-- Required in the final package but not at the compile time. So putting 
129
		them at the bottom of the dependency list. -->
130
    <dependency>
131
      <groupId>readonly.apache</groupId>
132
      <artifactId>commons-collections</artifactId>
133
      <version>3.2.1</version>
134
    </dependency>
135
    <dependency>
136
      <groupId>readonly.apache</groupId>
137
      <artifactId>commons-digester</artifactId>
138
      <version>2.0</version>
139
    </dependency>
140
    <dependency>
141
      <groupId>readonly.apache</groupId>
142
      <artifactId>commons-fileupload</artifactId>
143
      <version>1.2.1</version>
144
    </dependency>
145
    <dependency>
146
      <groupId>readonly.apache</groupId>
147
      <artifactId>commons-io</artifactId>
148
      <version>1.3.2</version>
149
    </dependency>
150
    <dependency>
151
      <groupId>readonly.apache</groupId>
152
      <artifactId>commons-lang</artifactId>
153
      <version>2.4</version>
154
    </dependency>
155
    <dependency>
156
      <groupId>readonly.apache</groupId>
157
      <artifactId>commons-logging</artifactId>
158
      <version>1.0.4</version>
159
    </dependency>
160
    <dependency>
161
      <groupId>readonly.apache</groupId>
162
      <artifactId>commons-logging-api</artifactId>
163
      <version>1.1</version>
164
    </dependency>
165
    <dependency>
166
      <groupId>readonly.apache</groupId>
167
      <artifactId>commons-validator</artifactId>
168
      <version>1.3.1</version>
169
    </dependency>
170
    <dependency>
171
      <groupId>readonly.apache</groupId>
172
      <artifactId>ezmorph</artifactId>
173
      <version>1.0.3</version>
174
    </dependency>
175
    <dependency>
176
      <groupId>readonly.apache</groupId>
177
      <artifactId>json-lib</artifactId>
178
      <version>2.1-jdk15</version>
179
    </dependency>
180
    <dependency>
181
      <groupId>readonly.apache</groupId>
182
      <artifactId>jsp-api</artifactId>
183
      <version>2.1</version>
184
    </dependency>
185
    <dependency>
186
      <groupId>readonly.apache</groupId>
187
      <artifactId>ognl</artifactId>
188
      <version>2.7.3</version>
1434 chandransh 189
    </dependency>  
1027 chandransh 190
    <dependency>
191
      <groupId>readonly.apache</groupId>
192
      <artifactId>velocity</artifactId>
193
      <version>1.6.3</version>
194
    </dependency>
195
    <dependency>
196
      <groupId>readonly.apache</groupId>
197
      <artifactId>velocity-tools</artifactId>
198
      <version>1.4</version>
199
    </dependency>
200
    <dependency>
201
      <groupId>readonly.apache</groupId>
202
      <artifactId>xpp3_min</artifactId>
203
      <version>1.1.3.4.O</version>
204
    </dependency>
205
    <dependency>
206
      <groupId>readonly</groupId>
207
      <artifactId>freemarker</artifactId>
208
      <version>2.3.15</version>
209
    </dependency>
210
    <dependency>
2784 chandransh 211
      <groupId>org.slf4j</groupId>
1027 chandransh 212
      <artifactId>slf4j-api</artifactId>
2784 chandransh 213
      <version>1.6.1</version>
1027 chandransh 214
    </dependency>
2784 chandransh 215
	<dependency>
216
	  <groupId>org.slf4j</groupId>
217
	  <artifactId>slf4j-log4j12</artifactId>
218
	  <version>1.6.1</version>
219
	</dependency>
1027 chandransh 220
    <dependency>
2784 chandransh 221
      <groupId>readonly.apache</groupId>
222
      <artifactId>log4j</artifactId>
223
      <version>1.2.16</version>
1027 chandransh 224
    </dependency>
3388 varun.gupt 225
    <dependency>
226
        <groupId>org.json</groupId>
227
        <artifactId>json</artifactId>
228
        <version>20090211</version>
229
    </dependency>
1023 chandransh 230
  </dependencies>
231
</project>