Subversion Repositories SmartDukaan

Rev

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

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