Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
4687 mandeep.dh 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>InventoryManager</artifactId>
4690 mandeep.dh 13
	<version>1.0-SNAPSHOT</version>
4687 mandeep.dh 14
	<packaging>war</packaging>
15
	<name>InventoryManager Maven Webapp</name>
16
	<url>http://maven.apache.org</url>
17
	<build>
18
		<finalName>InventoryManager</finalName>
5437 mandeep.dh 19
		<resources>
20
		  <resource>
21
		      <directory>src/main/resources</directory>
22
		  </resource>
23
		</resources>
14534 manish.sha 24
	<!-- <plugins>
25
     <plugin>
26
                        <groupId>org.apache.maven.plugins</groupId>
27
                        <artifactId>maven-compiler-plugin</artifactId>
28
                        <version>2.3.2</version>
29
                        <configuration>
30
                          <debug>true</debug>
31
                          <optimize>true</optimize>
32
                          <source>1.6</source>
33
                          <target>1.6</target>
34
                        </configuration>
35
      </plugin>
36
 
37
	</plugins> -->
4687 mandeep.dh 38
	</build>
39
 
40
    <properties>
41
        <shiro.version>1.1.0</shiro.version>
42
    </properties>
43
 
44
	<dependencies>
45
		<dependency>
46
			<groupId>junit</groupId>
47
			<artifactId>junit</artifactId>
48
			<version>3.8.1</version>
49
			<scope>test</scope>
50
		</dependency>
51
		<dependency>
52
			<groupId>org.apache.thrift</groupId>
53
			<artifactId>libthrift</artifactId>
54
			<version>0.7.0</version>
55
			<exclusions>
56
				<exclusion>
57
					<groupId>commons-codec</groupId>
58
					<artifactId>commons-codec</artifactId>
59
				</exclusion>
60
			</exclusions>
61
		</dependency>
62
 
63
		<dependency>
30506 amit.gupta 64
			<groupId>org</groupId>
4687 mandeep.dh 65
			<artifactId>iText</artifactId>
66
			<version>5.0.4</version>
67
		</dependency>
68
		<dependency>
5437 mandeep.dh 69
			<groupId>org.apache.poi</groupId>
4687 mandeep.dh 70
			<artifactId>poi</artifactId>
5437 mandeep.dh 71
			<version>3.8</version>
4687 mandeep.dh 72
		</dependency>
73
		<dependency>
74
			<groupId>com.ibm.icu</groupId>
75
			<artifactId>icu4j</artifactId>
76
			<version>4.8</version>
77
		</dependency>
78
		<dependency>
30506 amit.gupta 79
			<groupId>org.apache</groupId>
4687 mandeep.dh 80
			<artifactId>servlet-api</artifactId>
81
			<version>2.5</version>
82
			<scope>provided</scope>
83
		</dependency>
84
		<dependency>
30506 amit.gupta 85
			<groupId>org.apache.struts</groupId>
4687 mandeep.dh 86
			<artifactId>struts2-convention-plugin</artifactId>
87
			<version>2.1.8.1</version>
88
		</dependency>
89
		<dependency>
30506 amit.gupta 90
			<groupId>org.apache.struts</groupId>
4687 mandeep.dh 91
			<artifactId>struts2-core</artifactId>
92
			<version>2.1.8.1</version>
93
		</dependency>
94
		<dependency>
30506 amit.gupta 95
			<groupId>org.apache.struts</groupId>
4687 mandeep.dh 96
			<artifactId>struts2-rest-plugin</artifactId>
97
			<version>2.1.8.1</version>
98
		</dependency>
99
		<dependency>
30506 amit.gupta 100
			<groupId>org.apache.struts</groupId>
4687 mandeep.dh 101
			<artifactId>xstream</artifactId>
102
			<version>1.2.2</version>
103
		</dependency>
104
		<dependency>
30506 amit.gupta 105
			<groupId>org.apache.struts</groupId>
4687 mandeep.dh 106
			<artifactId>xwork-core</artifactId>
107
			<version>2.1.6</version>
108
		</dependency>
109
		<dependency>
110
			<groupId>in.shop2020</groupId>
111
			<artifactId>ThriftConfig</artifactId>
112
			<version>1.0-SNAPSHOT</version>
113
			<exclusions>
114
				<exclusion>
30506 amit.gupta 115
					<groupId>org.slf4j</groupId>
4687 mandeep.dh 116
					<artifactId>slf4j-api</artifactId>
117
				</exclusion>
118
				<exclusion>
30506 amit.gupta 119
					<groupId>org.slf4j</groupId>
4687 mandeep.dh 120
					<artifactId>slf4j-simple</artifactId>
121
				</exclusion>
122
			</exclusions>
123
		</dependency>
124
		<dependency>
125
			<groupId>in.shop2020</groupId>
126
			<artifactId>Common</artifactId>
127
			<version>1.0-SNAPSHOT</version>
128
			<exclusions>
129
				<exclusion>
30506 amit.gupta 130
					<groupId>org.slf4j</groupId>
4687 mandeep.dh 131
					<artifactId>slf4j-api</artifactId>
132
				</exclusion>
133
				<exclusion>
30506 amit.gupta 134
					<groupId>org.slf4j</groupId>
4687 mandeep.dh 135
					<artifactId>slf4j-simple</artifactId>
136
				</exclusion>
137
			</exclusions>
138
		</dependency>
9445 manish.sha 139
		<dependency>
140
			<groupId>in.shop2020</groupId>
141
			<artifactId>SaholicProductFeeds</artifactId>
142
			<version>1.0-SNAPSHOT</version>
143
		</dependency>
4687 mandeep.dh 144
		<!-- Required in the final package but not at the compile time. So putting 
145
			them at the bottom of the dependency list. -->
146
		<dependency>
30506 amit.gupta 147
			<groupId>org.apache</groupId>
4687 mandeep.dh 148
			<artifactId>commons-collections</artifactId>
149
			<version>3.2.1</version>
150
		</dependency>
151
		<dependency>
30506 amit.gupta 152
			<groupId>org.apache</groupId>
4687 mandeep.dh 153
			<artifactId>commons-digester</artifactId>
154
			<version>2.0</version>
155
		</dependency>
156
		<dependency>
30506 amit.gupta 157
			<groupId>org.apache</groupId>
4687 mandeep.dh 158
			<artifactId>commons-fileupload</artifactId>
159
			<version>1.2.1</version>
160
		</dependency>
161
		<dependency>
30506 amit.gupta 162
			<groupId>org.apache</groupId>
4687 mandeep.dh 163
			<artifactId>commons-io</artifactId>
164
			<version>1.3.2</version>
165
		</dependency>
166
		<dependency>
30506 amit.gupta 167
			<groupId>org.apache</groupId>
4687 mandeep.dh 168
			<artifactId>commons-lang</artifactId>
169
			<version>2.4</version>
170
		</dependency>
171
		<dependency>
30506 amit.gupta 172
			<groupId>org.apache</groupId>
4687 mandeep.dh 173
			<artifactId>commons-logging</artifactId>
174
			<version>1.0.4</version>
175
		</dependency>
176
		<dependency>
30506 amit.gupta 177
			<groupId>org.apache</groupId>
4687 mandeep.dh 178
			<artifactId>commons-logging-api</artifactId>
179
			<version>1.1</version>
180
		</dependency>
181
		<dependency>
30506 amit.gupta 182
			<groupId>org.apache</groupId>
4687 mandeep.dh 183
			<artifactId>commons-validator</artifactId>
184
			<version>1.3.1</version>
185
		</dependency>
186
		<dependency>
30506 amit.gupta 187
			<groupId>org.apache</groupId>
4687 mandeep.dh 188
			<artifactId>ezmorph</artifactId>
189
			<version>1.0.3</version>
190
		</dependency>
191
		<dependency>
30506 amit.gupta 192
			<groupId>org.apache</groupId>
4687 mandeep.dh 193
			<artifactId>json-lib</artifactId>
194
			<version>2.1-jdk15</version>
195
		</dependency>
196
		<dependency>
30506 amit.gupta 197
			<groupId>org.apache</groupId>
4687 mandeep.dh 198
			<artifactId>jsp-api</artifactId>
199
			<version>2.1</version>
200
		</dependency>
201
		<dependency>
30506 amit.gupta 202
			<groupId>org.apache</groupId>
4687 mandeep.dh 203
			<artifactId>ognl</artifactId>
204
			<version>2.7.3</version>
205
		</dependency>
206
		<dependency>
30506 amit.gupta 207
			<groupId>org.apache</groupId>
4687 mandeep.dh 208
			<artifactId>velocity</artifactId>
209
			<version>1.6.3</version>
210
		</dependency>
211
		<dependency>
30506 amit.gupta 212
			<groupId>org.apache</groupId>
4687 mandeep.dh 213
			<artifactId>velocity-tools</artifactId>
214
			<version>1.4</version>
215
		</dependency>
216
		<dependency>
30506 amit.gupta 217
			<groupId>org.apache</groupId>
4687 mandeep.dh 218
			<artifactId>xpp3_min</artifactId>
219
			<version>1.1.3.4.O</version>
220
		</dependency>
221
		<dependency>
30506 amit.gupta 222
			<groupId>org</groupId>
4687 mandeep.dh 223
			<artifactId>freemarker</artifactId>
224
			<version>2.3.15</version>
225
		</dependency>
226
		<dependency>
227
			<groupId>org.slf4j</groupId>
228
			<artifactId>slf4j-api</artifactId>
30506 amit.gupta 229
			<version>1.7.5</version>
4687 mandeep.dh 230
		</dependency>
231
		<dependency>
232
			<groupId>org.slf4j</groupId>
233
			<artifactId>slf4j-log4j12</artifactId>
30506 amit.gupta 234
			<version>1.7.5</version>
4687 mandeep.dh 235
		</dependency>
236
		<dependency>
30506 amit.gupta 237
			<groupId>org.apache</groupId>
4687 mandeep.dh 238
			<artifactId>log4j</artifactId>
239
			<version>1.2.16</version>
240
		</dependency>
241
        <dependency>
242
            <groupId>org.apache.shiro</groupId>
243
            <artifactId>shiro-core</artifactId>
244
            <version>${shiro.version}</version>
245
        </dependency>
246
        <dependency>
247
            <groupId>org.apache.shiro</groupId>
248
            <artifactId>shiro-web</artifactId>
249
            <version>${shiro.version}</version>
250
        </dependency>
251
		<dependency>
252
			<groupId>org.json</groupId>
253
			<artifactId>json</artifactId>
254
			<version>20090211</version>
255
		</dependency>
5437 mandeep.dh 256
        <dependency>
257
            <groupId>com.google.code.gson</groupId>
258
            <artifactId>gson</artifactId>
259
            <version>1.7.1</version>
14534 manish.sha 260
        </dependency>
14535 manish.sha 261
        <!--  <dependency>
14534 manish.sha 262
			<groupId>net.sf.opencsv</groupId>
263
			<artifactId>opencsv</artifactId>
264
			<version>2.3</version>
14535 manish.sha 265
		</dependency> -->	
14534 manish.sha 266
        <dependency>
267
        	<groupId>org.apache.httpcomponents</groupId>
268
        	<artifactId>httpcore</artifactId>
269
        	<version>4.3.2</version>
270
        </dependency>
271
        <dependency>
272
        	<groupId>org.apache.httpcomponents</groupId>
273
        	<artifactId>httpclient</artifactId>
274
        	<version>4.3.4</version>
275
        </dependency>
276
        <dependency>
277
        	<groupId>org.apache.httpcomponents</groupId>
278
        	<artifactId>httpmime</artifactId>
279
        	<version>4.3.4</version>
14536 manish.sha 280
        </dependency>
281
        <dependency>
282
        	<groupId>com.sendgrid</groupId>
283
			<artifactId>smtpapi-java</artifactId>
284
			<version>0.1.1</version>
285
        </dependency>
17403 manish.sha 286
        <dependency>
287
    	<groupId>net.sf.barcode4j</groupId>
288
    	<artifactId>barcode4j</artifactId>
289
    	<version>2.1</version>
290
    </dependency>
14536 manish.sha 291
	</dependencies>
292
</project>