Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
4500 mandeep.dh 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/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<groupId>in.shop2020</groupId>
5
	<artifactId>WarehouseService</artifactId>
6
    <packaging>jar</packaging>
7
    <version>1.0-SNAPSHOT</version>
8
    <parent>
9
      <groupId>in.shop2020</groupId>
10
      <artifactId>parent</artifactId>
11
      <version>1.0-SNAPSHOT</version>
12
    </parent>
13
 
4509 mandeep.dh 14
    <dependencies>
15
        <dependency>
16
            <groupId>junit</groupId>
17
            <artifactId>junit</artifactId>
18
            <version>4.8.2</version>
19
            <scope>test</scope>
20
        </dependency>
21
        <dependency>
22
            <groupId>org.apache.thrift</groupId>
23
            <artifactId>libthrift</artifactId>
24
            <version>0.7.0</version>
25
        </dependency>
26
        <dependency>
4500 mandeep.dh 27
            <groupId>log4j</groupId>
28
            <artifactId>log4j</artifactId>
29
            <version>1.2.16</version>
30
        </dependency>
4509 mandeep.dh 31
        <dependency>
32
            <groupId>commons-logging</groupId>
33
            <artifactId>commons-logging</artifactId>
34
            <version>1.1.1</version>
35
        </dependency>
36
        <dependency>
37
            <groupId>cglib</groupId>
38
            <artifactId>cglib</artifactId>
39
            <version>2.2</version>
40
        </dependency>
41
        <dependency>
42
            <groupId>commons-pool</groupId>
43
            <artifactId>commons-pool</artifactId>
44
            <version>1.5.6</version>
45
        </dependency>
46
        <dependency>
47
            <groupId>commons-dbcp</groupId>
48
            <artifactId>commons-dbcp</artifactId>
49
            <version>1.4</version>
50
        </dependency>
51
        <dependency>
52
            <groupId>aopalliance</groupId>
53
            <artifactId>aopalliance</artifactId>
54
            <version>1.0</version>
55
        </dependency>
56
        <dependency>
57
            <groupId>org.springframework</groupId>
58
            <artifactId>spring-context</artifactId>
59
            <version>3.0.5.RELEASE</version>
60
        </dependency>
61
        <dependency>
62
            <groupId>org.springframework</groupId>
63
            <artifactId>spring-core</artifactId>
64
            <version>3.0.5.RELEASE</version>
65
        </dependency>
66
        <dependency>
67
            <groupId>org.springframework</groupId>
68
            <artifactId>spring-expression</artifactId>
69
            <version>3.0.5.RELEASE</version>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.springframework</groupId>
73
            <artifactId>spring-jdbc</artifactId>
74
            <version>3.0.5.RELEASE</version>
75
        </dependency>
76
        <dependency>
77
            <groupId>org.springframework</groupId>
78
            <artifactId>spring-tx</artifactId>
79
            <version>3.0.5.RELEASE</version>
80
        </dependency>
81
        <dependency>
82
            <groupId>asm</groupId>
83
            <artifactId>asm</artifactId>
84
            <version>3.1</version>
85
        </dependency>
86
        <dependency>
87
            <groupId>mysql</groupId>
88
            <artifactId>mysql-connector-java</artifactId>
89
            <version>5.1.16</version>
90
        </dependency>
91
        <dependency>
92
            <groupId>org.slf4j</groupId>
93
            <artifactId>slf4j-api</artifactId>
94
            <version>1.6.1</version>
95
        </dependency>
96
        <dependency>
97
            <groupId>org.slf4j</groupId>
98
            <artifactId>slf4j-log4j12</artifactId>
99
            <version>1.6.1</version>
100
        </dependency>
101
        <dependency>
102
            <groupId>org.mybatis</groupId>
103
            <artifactId>mybatis-spring</artifactId>
104
            <version>1.0.0</version>
105
        </dependency>
106
        <dependency>
107
            <groupId>org.mybatis</groupId>
108
            <artifactId>mybatis</artifactId>
109
            <version>3.0.4</version>
110
        </dependency>
111
        <dependency>
112
            <groupId>in.shop2020</groupId>
113
            <artifactId>ThriftConfig</artifactId>
114
            <version>1.0-SNAPSHOT</version>
115
            <exclusions>
116
                <exclusion>
117
                    <groupId>readonly.slf4j</groupId>
118
                    <artifactId>slf4j-api</artifactId>
119
                </exclusion>
120
                <exclusion>
121
                    <groupId>readonly.slf4j</groupId>
122
                    <artifactId>slf4j-simple</artifactId>
123
                </exclusion>
124
            </exclusions>
125
        </dependency>
126
        <dependency>
127
            <groupId>in.shop2020</groupId>
128
            <artifactId>Common</artifactId>
129
            <version>1.0-SNAPSHOT</version>
130
            <exclusions>
131
                <exclusion>
132
                    <groupId>readonly.slf4j</groupId>
133
                    <artifactId>slf4j-api</artifactId>
134
                </exclusion>
135
                <exclusion>
136
                    <groupId>readonly.slf4j</groupId>
137
                    <artifactId>slf4j-simple</artifactId>
138
                </exclusion>
139
            </exclusions>
140
        </dependency>
141
    </dependencies>
4500 mandeep.dh 142
</project>