Subversion Repositories SmartDukaan

Rev

Rev 5020 | Rev 8615 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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