Subversion Repositories SmartDukaan

Rev

Rev 7934 | Rev 13584 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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