Subversion Repositories SmartDukaan

Rev

Rev 30517 | Rev 31023 | 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>
30517 amit.gupta 60
			<groupId>org.slf4j</groupId>
9074 vikram.rag 61
			<artifactId>slf4j-api</artifactId>
62
			<version>1.5.8</version>
63
		</dependency>
64
		<dependency>
30517 amit.gupta 65
			<groupId>org.slf4j</groupId>
9074 vikram.rag 66
			<artifactId>slf4j-simple</artifactId>
67
			<version>1.5.8</version>
68
		</dependency>
69
		<dependency>
30517 amit.gupta 70
			<groupId>org.apache</groupId>
9074 vikram.rag 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>
30517 amit.gupta 85
			<groupId>org.apache</groupId>
9074 vikram.rag 86
			<artifactId>log4j</artifactId>
87
			<version>1.2.16</version>
88
		</dependency>
89
 
31022 amit.gupta 90
		<!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api -->
9074 vikram.rag 91
		<dependency>
31022 amit.gupta 92
		    <groupId>javax.mail</groupId>
93
		    <artifactId>javax.mail-api</artifactId>
94
		    <version>1.6.2</version>
9074 vikram.rag 95
		</dependency>
31022 amit.gupta 96
 
9074 vikram.rag 97
		<dependency>
98
			<!-- jsoup HTML parser library @ http://jsoup.org/ -->
99
			<groupId>org.jsoup</groupId>
100
			<artifactId>jsoup</artifactId>
101
			<version>1.7.1</version>
102
		</dependency>
103
		<dependency>
104
			<groupId>TrackWebServiceClient</groupId>
105
			<artifactId>TrackWebServiceClient</artifactId>
106
			<version>1.0-SNAPSHOT</version>
107
		</dependency>
108
		<dependency>
109
			<groupId>ShipDEWebServiceClient</groupId>
110
			<artifactId>ShipDEWebServiceClient</artifactId>
111
			<version>1.0-SNAPSHOT</version>
112
		</dependency>
113
		<dependency>
114
			<groupId>com.google.code.gson</groupId>
115
			<artifactId>gson</artifactId>
116
			<version>1.7.1</version>
117
		</dependency>
13584 manish.sha 118
		<dependency>
119
			<groupId>net.sf.opencsv</groupId>
120
			<artifactId>opencsv</artifactId>
121
			<version>2.3</version>
122
		</dependency>
13585 manish.sha 123
		<dependency>
30517 amit.gupta 124
			<groupId>org.apache</groupId>
13585 manish.sha 125
			<artifactId>poi</artifactId>
126
			<version>3.7-20101029</version>
127
		</dependency>
128
		<dependency>
129
			<groupId>org.mongodb</groupId>
130
			<artifactId>mongo-java-driver</artifactId>
131
			<version>2.11.0</version>
132
		</dependency>
9074 vikram.rag 133
	</dependencies>
1021 chandransh 134
</project>