Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
1946 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>PaymentService</artifactId>
6
  <packaging>jar</packaging>
7
  <version>1.0-SNAPSHOT</version>
1953 chandransh 8
 
9
  <name>Payment Service</name>
10
  <url>http://shop2020.in</url>
1946 chandransh 11
 
1953 chandransh 12
  <parent>
13
    <groupId>in.shop2020</groupId>
14
    <artifactId>parent</artifactId>
15
    <version>1.0-SNAPSHOT</version>
16
  </parent>
17
 
1946 chandransh 18
  <build>
19
    <plugins>
20
      <plugin>
21
        <groupId>org.apache.maven.plugins</groupId>
22
        <artifactId>maven-compiler-plugin</artifactId>
23
        <version>2.3.2</version>
24
        <configuration>
25
          <debug>true</debug>
26
          <optimize>true</optimize>
27
          <source>1.6</source>
28
          <target>1.6</target>
29
        </configuration>
30
      </plugin>
31
    </plugins>
32
  </build>
33
 
34
  <dependencies>
35
    <dependency>
36
      <groupId>readonly.apache</groupId>
37
      <artifactId>thrift</artifactId>
38
      <version>0.2.0</version>
39
    </dependency>
40
    <dependency>
1953 chandransh 41
      <groupId>readonly.apache</groupId>
42
      <artifactId>log4j</artifactId>
43
      <version>1.2.16</version>
44
    </dependency>
45
    <dependency>
46
      <groupId>readonly.apache</groupId>
47
      <artifactId>commons-logging</artifactId>
48
      <version>1.0.4</version>
49
    </dependency>
50
    <dependency>
1946 chandransh 51
      <groupId>in.shop2020</groupId>
52
      <artifactId>ThriftConfig</artifactId>
53
      <version>1.0-SNAPSHOT</version>
54
    </dependency>
2039 chandransh 55
    <dependency>
56
      <groupId>in.shop2020</groupId>
57
      <artifactId>Common</artifactId>
58
      <version>1.0-SNAPSHOT</version>
59
    </dependency>
1953 chandransh 60
	<dependency>
61
	    <groupId>org.slf4j</groupId>
62
	    <artifactId>slf4j-api</artifactId>
63
	    <version>1.6.1</version>
64
	</dependency>
65
	<dependency>
66
	    <groupId>org.slf4j</groupId>
67
	    <artifactId>slf4j-log4j12</artifactId>
68
	    <version>1.6.1</version>
69
	</dependency>
1946 chandransh 70
    <dependency>
71
		<groupId>org.mybatis</groupId>
72
		<artifactId>mybatis-spring</artifactId>
73
		<version>1.0.0</version>
74
	</dependency>
75
	<dependency>
1953 chandransh 76
		<groupId>org.mybatis</groupId>
77
		<artifactId>mybatis</artifactId>
78
		<version>3.0.4</version>
79
	</dependency>
80
	<dependency>
1946 chandransh 81
		<groupId>cglib</groupId>
82
		<artifactId>cglib</artifactId>
83
		<version>2.2</version>
84
	</dependency>
1953 chandransh 85
	<dependency>
86
		<groupId>commons-pool</groupId>
87
		<artifactId>commons-pool</artifactId>
88
		<version>1.5.6</version>
89
	</dependency>
90
	<dependency>
91
	    <groupId>commons-dbcp</groupId>
92
	    <artifactId>commons-dbcp</artifactId>
93
	    <version>1.4</version>
94
	</dependency>
95
	<dependency>
96
	    <groupId>aopalliance</groupId>
97
	    <artifactId>aopalliance</artifactId>
98
	    <version>1.0</version>
99
	</dependency>
100
	<dependency>
101
	    <groupId>org.springframework</groupId>
102
	    <artifactId>spring-aop</artifactId>
103
	    <version>3.0.5.RELEASE</version>
104
	</dependency>
105
	<dependency>
106
	    <groupId>org.springframework</groupId>
107
	    <artifactId>spring-asm</artifactId>
108
	    <version>3.0.5.RELEASE</version>
109
	</dependency>
110
	<dependency>
111
	    <groupId>org.springframework</groupId>
112
	    <artifactId>spring-beans</artifactId>
113
	    <version>3.0.5.RELEASE</version>
114
	</dependency>
115
	<dependency>
116
	    <groupId>org.springframework</groupId>
117
	    <artifactId>spring-context</artifactId>
118
	    <version>3.0.5.RELEASE</version>
119
	</dependency>
120
	<dependency>
121
	    <groupId>org.springframework</groupId>
122
	    <artifactId>spring-core</artifactId>
123
	    <version>3.0.5.RELEASE</version>
124
	</dependency>
125
	<dependency>
126
	    <groupId>org.springframework</groupId>
127
	    <artifactId>spring-expression</artifactId>
128
	    <version>3.0.5.RELEASE</version>
129
	</dependency>
130
	<dependency>
131
	    <groupId>org.springframework</groupId>
132
	    <artifactId>spring-jdbc</artifactId>
133
	    <version>3.0.5.RELEASE</version>
134
	</dependency>
135
	<dependency>
136
	    <groupId>org.springframework</groupId>
137
	    <artifactId>spring-tx</artifactId>
138
	    <version>3.0.5.RELEASE</version>
139
	</dependency>
140
	<dependency>
141
	    <groupId>asm</groupId>
142
	    <artifactId>asm</artifactId>
143
	    <version>3.1</version>
144
	</dependency>
145
	<dependency>
146
	    <groupId>mysql</groupId>
147
	    <artifactId>mysql-connector-java</artifactId>
148
	    <version>5.1.16</version>
149
	</dependency>
1946 chandransh 150
  </dependencies>
1953 chandransh 151
</project>