Subversion Repositories SmartDukaan

Rev

Rev 7928 | Rev 9074 | 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"
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>
8
 
9
  <name>Java Clients for Thrift Services</name>
10
  <url>http://shop2020.in</url>
11
 
12
  <parent>
13
    <groupId>in.shop2020</groupId>
14
    <artifactId>parent</artifactId>
15
    <version>1.0-SNAPSHOT</version>
16
  </parent>
2530 vikas 17
 
18
  <properties>
19
    <env>dev</env>
20
  </properties>
21
 
1021 chandransh 22
  <build>
2530 vikas 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>
1021 chandransh 32
    <plugins>
33
      <plugin>
34
        <groupId>org.apache.maven.plugins</groupId>
35
        <artifactId>maven-compiler-plugin</artifactId>
1281 chandransh 36
        <version>2.3.2</version>
1021 chandransh 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>
3429 rajveer 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>
1021 chandransh 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>
2262 vikas 70
      <groupId>readonly.apache</groupId>
71
      <artifactId>commons-lang</artifactId>
72
      <version>2.4</version>
73
    </dependency>
74
    <dependency>
1021 chandransh 75
      <groupId>in.shop2020</groupId>
76
      <artifactId>ThriftConfig</artifactId>
77
      <version>1.0-SNAPSHOT</version>
78
    </dependency>
2418 vikas 79
    <dependency>
80
        <groupId>org.json</groupId>
81
        <artifactId>json</artifactId>
82
        <version>20090211</version>
83
    </dependency>
2510 vikas 84
    <dependency>
85
      <groupId>readonly.apache</groupId>
86
      <artifactId>log4j</artifactId>
87
      <version>1.2.16</version>
88
    </dependency>
2822 chandransh 89
 
90
    <dependency>
91
	  <groupId>javax.mail</groupId>
92
	  <artifactId>mail</artifactId>
93
	  <version>1.4</version>
94
	</dependency>
6627 kshitij.so 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>
7928 manish.sha 101
    <dependency>
102
    	<groupId>TrackWebServiceClient</groupId>
103
    	<artifactId>TrackWebServiceClient</artifactId>
104
    	<version>1.0-SNAPSHOT</version>
105
    </dependency>
7934 manish.sha 106
    <dependency>
107
    	<groupId>ShipDEWebServiceClient</groupId>
108
    	<artifactId>ShipDEWebServiceClient</artifactId>
109
    	<version>1.0-SNAPSHOT</version>
110
    </dependency>
1021 chandransh 111
  </dependencies>
112
</project>