Subversion Repositories SmartDukaan

Rev

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