Subversion Repositories SmartDukaan

Rev

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

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