Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
1021 chandransh 1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9074 vikram.rag 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>Common</artifactId>
6
	<packaging>jar</packaging>
7
	<version>1.0-SNAPSHOT</version>
1021 chandransh 8
 
9074 vikram.rag 9
	<name>Java Clients for Thrift Services</name>
10
	<url>http://shop2020.in</url>
1021 chandransh 11
 
9074 vikram.rag 12
	<parent>
13
		<groupId>in.shop2020</groupId>
14
		<artifactId>parent</artifactId>
15
		<version>1.0-SNAPSHOT</version>
16
	</parent>
17
 
18
	<properties>
19
		<env>dev</env>
20
	</properties>
21
 
22
	<build>
23
		<filters>
24
			<filter>src/main/filters/${env}/filters.properties</filter>
25
		</filters>
26
		<resources>
27
			<resource>
28
				<directory>src/main/resources</directory>
29
				<filtering>true</filtering>
30
			</resource>
31
		</resources>
32
		<plugins>
33
			<plugin>
34
				<groupId>org.apache.maven.plugins</groupId>
35
				<artifactId>maven-compiler-plugin</artifactId>
36
				<version>2.3.2</version>
37
				<configuration>
38
					<debug>true</debug>
39
					<optimize>true</optimize>
40
					<source>1.6</source>
41
					<target>1.6</target>
42
				</configuration>
43
			</plugin>
44
		</plugins>
45
	</build>
46
 
47
	<dependencies>
48
		<dependency>
49
			<groupId>org.apache.thrift</groupId>
50
			<artifactId>libthrift</artifactId>
51
			<version>0.7.0</version>
52
			<exclusions>
53
				<exclusion>
54
					<groupId>commons-codec</groupId>
55
					<artifactId>commons-codec</artifactId>
56
				</exclusion>
57
			</exclusions>
58
		</dependency>
59
		<dependency>
60
			<groupId>readonly.slf4j</groupId>
61
			<artifactId>slf4j-api</artifactId>
62
			<version>1.5.8</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>readonly.slf4j</groupId>
66
			<artifactId>slf4j-simple</artifactId>
67
			<version>1.5.8</version>
68
		</dependency>
69
		<dependency>
70
			<groupId>readonly.apache</groupId>
71
			<artifactId>commons-lang</artifactId>
72
			<version>2.4</version>
73
		</dependency>
74
		<dependency>
75
			<groupId>in.shop2020</groupId>
76
			<artifactId>ThriftConfig</artifactId>
77
			<version>1.0-SNAPSHOT</version>
78
		</dependency>
79
		<dependency>
80
			<groupId>org.json</groupId>
81
			<artifactId>json</artifactId>
82
			<version>20090211</version>
83
		</dependency>
84
		<dependency>
85
			<groupId>readonly.apache</groupId>
86
			<artifactId>log4j</artifactId>
87
			<version>1.2.16</version>
88
		</dependency>
89
 
90
		<dependency>
91
			<groupId>javax.mail</groupId>
92
			<artifactId>mail</artifactId>
93
			<version>1.4</version>
94
		</dependency>
95
		<dependency>
96
			<!-- jsoup HTML parser library @ http://jsoup.org/ -->
97
			<groupId>org.jsoup</groupId>
98
			<artifactId>jsoup</artifactId>
99
			<version>1.7.1</version>
100
		</dependency>
101
		<dependency>
102
			<groupId>TrackWebServiceClient</groupId>
103
			<artifactId>TrackWebServiceClient</artifactId>
104
			<version>1.0-SNAPSHOT</version>
105
		</dependency>
106
		<dependency>
107
			<groupId>ShipDEWebServiceClient</groupId>
108
			<artifactId>ShipDEWebServiceClient</artifactId>
109
			<version>1.0-SNAPSHOT</version>
110
		</dependency>
111
		<dependency>
112
			<groupId>com.google.code.gson</groupId>
113
			<artifactId>gson</artifactId>
114
			<version>1.7.1</version>
115
		</dependency>
13584 manish.sha 116
		<dependency>
117
			<groupId>net.sf.opencsv</groupId>
118
			<artifactId>opencsv</artifactId>
119
			<version>2.3</version>
120
		</dependency>
13585 manish.sha 121
		<dependency>
122
			<groupId>readonly.apache</groupId>
123
			<artifactId>poi</artifactId>
124
			<version>3.7-20101029</version>
125
		</dependency>
126
		<dependency>
127
			<groupId>org.mongodb</groupId>
128
			<artifactId>mongo-java-driver</artifactId>
129
			<version>2.11.0</version>
130
		</dependency>
9074 vikram.rag 131
	</dependencies>
1021 chandransh 132
</project>