Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
20399 amit.gupta 1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20424 kshitij.so 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>Hotspot</artifactId>
6
	<packaging>war</packaging>
7
	<version>1.0-SNAPSHOT</version>
20399 amit.gupta 8
 
20424 kshitij.so 9
	<name>HotspotStore</name>
10
	<url>http://hotspotstore.com</url>
20399 amit.gupta 11
 
20424 kshitij.so 12
	<parent>
13
		<groupId>in.shop2020</groupId>
14
		<artifactId>parent</artifactId>
15
		<version>1.0-SNAPSHOT</version>
16
	</parent>
20399 amit.gupta 17
 
20424 kshitij.so 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
		<dependency>
47
			<groupId>readonly.apache.struts</groupId>
48
			<artifactId>struts2-convention-plugin</artifactId>
49
			<version>2.1.8.1</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>readonly.apache.struts</groupId>
53
			<artifactId>struts2-core</artifactId>
54
			<version>2.1.8.1</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>readonly.apache.struts</groupId>
58
			<artifactId>struts2-rest-plugin</artifactId>
59
			<version>2.1.8.1</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>readonly.apache.struts</groupId>
63
			<artifactId>xstream</artifactId>
64
			<version>1.2.2</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>readonly.apache.struts</groupId>
68
			<artifactId>xwork-core</artifactId>
69
			<version>2.1.6</version>
70
		</dependency>
71
                <dependency>
72
  <groupId>com.eclipsesource.minimal-json</groupId>
73
  <artifactId>minimal-json</artifactId>
74
  <version>0.9.4</version>
20399 amit.gupta 75
</dependency>
76
<dependency>
20533 kshitij.so 77
    <groupId>org.apache.httpcomponents</groupId>
78
    <artifactId>httpclient</artifactId>
79
    <version>4.3.4</version>
80
</dependency>
20424 kshitij.so 81
                <dependency>
82
      <groupId>in.shop2020</groupId>
83
      <artifactId>ThriftConfig</artifactId>
84
      <version>1.0-SNAPSHOT</version>
20399 amit.gupta 85
    </dependency>
20424 kshitij.so 86
		<dependency>
87
			<groupId>in.shop2020</groupId>
88
			<artifactId>Common</artifactId>
89
			<version>1.0-SNAPSHOT</version>
90
			<exclusions>
91
				<exclusion>
92
					<groupId>readonly.slf4j</groupId>
93
					<artifactId>slf4j-api</artifactId>
94
				</exclusion>
95
				<exclusion>
96
					<groupId>readonly.slf4j</groupId>
97
					<artifactId>slf4j-simple</artifactId>
98
				</exclusion>
99
			</exclusions>
100
		</dependency>
101
		<!-- Required in the final package but not at the compile time. So putting 
102
			them at the bottom of the dependency list. -->
103
		<dependency>
104
			<groupId>readonly.apache</groupId>
105
			<artifactId>commons-collections</artifactId>
106
			<version>3.2.1</version>
107
		</dependency>
108
		<dependency>
109
			<groupId>readonly.apache</groupId>
110
			<artifactId>commons-digester</artifactId>
111
			<version>2.0</version>
112
		</dependency>
113
		<dependency>
114
			<groupId>readonly.apache</groupId>
115
			<artifactId>commons-fileupload</artifactId>
116
			<version>1.2.1</version>
117
		</dependency>
118
		<dependency>
119
			<groupId>readonly.apache</groupId>
120
			<artifactId>commons-io</artifactId>
121
			<version>1.3.2</version>
122
		</dependency>
123
		<dependency>
124
			<groupId>readonly.apache</groupId>
125
			<artifactId>commons-lang</artifactId>
126
			<version>2.4</version>
127
		</dependency>
128
		<dependency>
129
			<groupId>readonly.apache</groupId>
130
			<artifactId>commons-logging</artifactId>
131
			<version>1.0.4</version>
132
		</dependency>
133
		<dependency>
134
			<groupId>readonly.apache</groupId>
135
			<artifactId>commons-logging-api</artifactId>
136
			<version>1.1</version>
137
		</dependency>
138
		<dependency>
139
			<groupId>readonly.apache</groupId>
140
			<artifactId>commons-validator</artifactId>
141
			<version>1.3.1</version>
142
		</dependency>
143
		<dependency>
144
			<groupId>readonly.apache</groupId>
145
			<artifactId>ezmorph</artifactId>
146
			<version>1.0.3</version>
147
		</dependency>
148
		<dependency>
149
			<groupId>readonly.apache</groupId>
150
			<artifactId>json-lib</artifactId>
151
			<version>2.1-jdk15</version>
152
		</dependency>
153
		<dependency>
154
			<groupId>readonly.apache</groupId>
155
			<artifactId>jsp-api</artifactId>
156
			<version>2.1</version>
157
		</dependency>
158
		<dependency>
159
			<groupId>readonly.apache</groupId>
160
			<artifactId>ognl</artifactId>
161
			<version>2.7.3</version>
162
		</dependency>
163
		<dependency>
164
			<groupId>readonly.apache</groupId>
165
			<artifactId>velocity</artifactId>
166
			<version>1.6.3</version>
167
		</dependency>
168
		<dependency>
169
			<groupId>readonly.apache</groupId>
170
			<artifactId>velocity-tools</artifactId>
171
			<version>1.4</version>
172
		</dependency>
173
		<dependency>
174
			<groupId>readonly.apache</groupId>
175
			<artifactId>xpp3_min</artifactId>
176
			<version>1.1.3.4.O</version>
177
		</dependency>
178
		<dependency>
179
			<groupId>readonly</groupId>
180
			<artifactId>freemarker</artifactId>
181
			<version>2.3.15</version>
182
		</dependency>
183
		<dependency>
184
			<groupId>org.slf4j</groupId>
185
			<artifactId>slf4j-api</artifactId>
186
			<version>1.6.1</version>
187
		</dependency>
188
		<dependency>
189
			<groupId>org.slf4j</groupId>
190
			<artifactId>slf4j-log4j12</artifactId>
191
			<version>1.6.1</version>
192
		</dependency>
193
		<dependency>
194
			<groupId>readonly.apache</groupId>
195
			<artifactId>log4j</artifactId>
196
			<version>1.2.16</version>
197
		</dependency>
198
		<dependency>
199
			<groupId>org.json</groupId>
200
			<artifactId>json</artifactId>
201
			<version>20090211</version>
202
		</dependency>
203
		<dependency>
204
		<groupId>javax.inject</groupId>
205
  		<artifactId>javax.inject</artifactId>
206
  		<version>1</version>
207
		</dependency>
208
                <dependency>
209
                <groupId>org.mongodb</groupId>
210
                <artifactId>mongo-java-driver</artifactId>
211
                <version>2.12.2</version>
212
                </dependency>
213
                <dependency>
214
	<groupId>com.whalin</groupId>
215
	<artifactId>Memcached-Java-Client</artifactId>
216
	<version>3.0.0</version>
20399 amit.gupta 217
</dependency>
218
<dependency>
20424 kshitij.so 219
	<groupId>org.apache.commons</groupId>
220
	<artifactId>commons-pool2</artifactId>
221
	<version>2.0</version>
20399 amit.gupta 222
</dependency>
20529 kshitij.so 223
<dependency>
224
	<groupId>org.glassfish</groupId>
225
	<artifactId>javax.json</artifactId>
226
	<version>1.0.2</version>
227
</dependency>
20531 kshitij.so 228
<dependency>
229
    <groupId>com.sendgrid</groupId>
230
    <artifactId>sendgrid-java</artifactId>
231
    <version>3.1.0</version>
232
</dependency>
20424 kshitij.so 233
	</dependencies>
20399 amit.gupta 234
</project>