Subversion Repositories SmartDukaan

Rev

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

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