Subversion Repositories SmartDukaan

Rev

Rev 4261 | 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
 
4718 anupam.sin 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>
30
			<groupId>org.apache.thrift</groupId>
31
			<artifactId>libthrift</artifactId>
32
			<version>0.7.0</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>log4j</groupId>
36
			<artifactId>log4j</artifactId>
37
			<version>1.2.16</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>commons-logging</groupId>
41
			<artifactId>commons-logging</artifactId>
42
			<version>1.1.1</version>
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>commons-daemon</groupId>
61
			<artifactId>commons-daemon</artifactId>
62
			<version>1.0.1</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>aopalliance</groupId>
66
			<artifactId>aopalliance</artifactId>
67
			<version>1.0</version>
68
		</dependency>
69
		<dependency>
70
			<groupId>org.springframework</groupId>
71
			<artifactId>spring-context</artifactId>
72
			<version>3.0.5.RELEASE</version>
73
		</dependency>
74
		<dependency>
75
			<groupId>org.springframework</groupId>
76
			<artifactId>spring-core</artifactId>
77
			<version>3.0.5.RELEASE</version>
78
		</dependency>
79
		<dependency>
80
			<groupId>org.springframework</groupId>
81
			<artifactId>spring-expression</artifactId>
82
			<version>3.0.5.RELEASE</version>
83
		</dependency>
84
		<dependency>
85
			<groupId>org.springframework</groupId>
86
			<artifactId>spring-jdbc</artifactId>
87
			<version>3.0.5.RELEASE</version>
88
		</dependency>
89
		<dependency>
90
			<groupId>org.springframework</groupId>
91
			<artifactId>spring-tx</artifactId>
92
			<version>3.0.5.RELEASE</version>
93
		</dependency>
94
		<dependency>
95
			<groupId>asm</groupId>
96
			<artifactId>asm</artifactId>
97
			<version>3.1</version>
98
		</dependency>
99
		<dependency>
100
			<groupId>mysql</groupId>
101
			<artifactId>mysql-connector-java</artifactId>
102
			<version>5.1.16</version>
103
		</dependency>
104
		<dependency>
105
			<groupId>org.slf4j</groupId>
106
			<artifactId>slf4j-api</artifactId>
107
			<version>1.6.1</version>
108
		</dependency>
109
		<dependency>
110
			<groupId>org.slf4j</groupId>
111
			<artifactId>slf4j-log4j12</artifactId>
112
			<version>1.6.1</version>
113
		</dependency>
114
		<dependency>
115
			<groupId>org.mybatis</groupId>
116
			<artifactId>mybatis-spring</artifactId>
117
			<version>1.0.0</version>
118
		</dependency>
119
		<dependency>
120
			<groupId>org.mybatis</groupId>
121
			<artifactId>mybatis</artifactId>
122
			<version>3.0.4</version>
123
		</dependency>
124
		<dependency>
125
			<groupId>in.shop2020</groupId>
126
			<artifactId>ThriftConfig</artifactId>
127
			<version>1.0-SNAPSHOT</version>
128
			<exclusions>
129
				<exclusion>
130
					<groupId>readonly.slf4j</groupId>
131
					<artifactId>slf4j-api</artifactId>
132
				</exclusion>
133
				<exclusion>
134
					<groupId>readonly.slf4j</groupId>
135
					<artifactId>slf4j-simple</artifactId>
136
				</exclusion>
137
			</exclusions>
138
		</dependency>
139
		<dependency>
140
			<groupId>in.shop2020</groupId>
141
			<artifactId>Common</artifactId>
142
			<version>1.0-SNAPSHOT</version>
143
			<exclusions>
144
				<exclusion>
145
					<groupId>readonly.slf4j</groupId>
146
					<artifactId>slf4j-api</artifactId>
147
				</exclusion>
148
				<exclusion>
149
					<groupId>readonly.slf4j</groupId>
150
					<artifactId>slf4j-simple</artifactId>
151
				</exclusion>
152
			</exclusions>
153
		</dependency>
154
	</dependencies>
3024 mandeep.dh 155
</project>