Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
12451 kshitij.so 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/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<groupId>in.shop2020</groupId>
5
	<artifactId>AmazonMws</artifactId>
6
	<version>1.0-SNAPSHOT</version>
7
	<name>AmazonMws</name>
8
	<packaging>jar</packaging>
9
	<build>
10
		<plugins>
11
			<plugin>
12
				<artifactId>maven-compiler-plugin</artifactId>
13
				<version>2.4</version>
14
				<configuration>
15
					<debug>true</debug>
16
					<optimize>true</optimize>
17
					<source>1.6</source>
18
					<target>1.6</target>
19
				</configuration>
20
			</plugin>
21
		</plugins>
22
	</build>
23
 
24
	<dependencies>
25
		<dependency>
26
			<groupId>javax.activation</groupId>
27
			<artifactId>activation</artifactId>
28
			<version>1.1</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>commons-codec</groupId>
32
			<artifactId>commons-codec</artifactId>
33
			<version>1.3</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>commons-httpclient</groupId>
37
			<artifactId>commons-httpclient</artifactId>
38
			<version>3.0.1</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>commons-logging</groupId>
42
			<artifactId>commons-logging</artifactId>
43
			<version>1.1</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>org.apache.httpcomponents</groupId>
47
			<artifactId>httpclient</artifactId>
48
			<version>4.2</version>
49
		</dependency>
50
		<dependency>
51
			<groupId>org.apache.httpcomponents</groupId>
52
			<artifactId>httpcore</artifactId>
53
			<version>4.2</version>
54
		</dependency>
55
		<dependency>
56
			<groupId>javax.xml.bind</groupId>
57
			<artifactId>jaxb-api</artifactId>
58
			<version>2.1</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>javax.xml</groupId>
62
			<artifactId>jaxb-impl</artifactId>
63
			<version>2.1</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>javax.xml</groupId>
67
			<artifactId>jaxb-xjc</artifactId>
12487 manish.sha 68
			<version>2.0EA3</version>
12451 kshitij.so 69
		</dependency>
70
 
71
		<dependency>
72
			<groupId>javax.xml.bind</groupId>
73
			<artifactId>jsr173_api</artifactId>
74
			<version>1.0</version>
75
		</dependency>
76
		<dependency>
77
			<groupId>log4j</groupId>
78
			<artifactId>log4j</artifactId>
79
			<version>1.2.14</version>
80
		</dependency>
81
		<dependency>
82
			<groupId>in.shop2020</groupId>
83
			<artifactId>AmazonObjects</artifactId>
84
			<version>1.0-SNAPSHOT</version>
85
		</dependency>
86
		<dependency>
87
			<groupId>readonly.apache</groupId>
88
			<artifactId>poi</artifactId>
89
			<version>3.7-20101029</version>
90
		</dependency>
91
	</dependencies>
92
</project>