Subversion Repositories SmartDukaan

Rev

Rev 1953 | Go to most recent revision | Details | 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>
8
 
9
  <build>
10
    <plugins>
11
      <plugin>
12
        <groupId>org.apache.maven.plugins</groupId>
13
        <artifactId>maven-compiler-plugin</artifactId>
14
        <version>2.3.2</version>
15
        <configuration>
16
          <debug>true</debug>
17
          <optimize>true</optimize>
18
          <source>1.6</source>
19
          <target>1.6</target>
20
        </configuration>
21
      </plugin>
22
    </plugins>
23
  </build>
24
 
25
  <dependencies>
26
    <dependency>
27
      <groupId>readonly.apache</groupId>
28
      <artifactId>thrift</artifactId>
29
      <version>0.2.0</version>
30
    </dependency>
31
    <dependency>
32
      <groupId>in.shop2020</groupId>
33
      <artifactId>ThriftConfig</artifactId>
34
      <version>1.0-SNAPSHOT</version>
35
    </dependency>
36
    <dependency>
37
		<groupId>org.mybatis</groupId>
38
		<artifactId>mybatis-spring</artifactId>
39
		<version>1.0.0</version>
40
	</dependency>
41
	<dependency>
42
		<groupId>cglib</groupId>
43
		<artifactId>cglib</artifactId>
44
		<version>2.2</version>
45
	</dependency>
46
  </dependencies>
47
</project>