Subversion Repositories SmartDukaan

Rev

Rev 3530 | Rev 4261 | 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
 
3520 mandeep.dh 22
    <build>
23
        <plugins>
24
            <plugin>
25
                <artifactId>maven-assembly-plugin</artifactId>
3530 mandeep.dh 26
                <version>2.2.1</version>
3520 mandeep.dh 27
                <configuration>
28
                    <archive>
29
                        <manifest>
30
                            <mainClass>in.shop2020.crm.service.CRMServer</mainClass>
31
                        </manifest>
32
                    </archive>
33
                    <descriptorRefs>
34
                        <descriptorRef>jar-with-dependencies</descriptorRef>
35
                    </descriptorRefs>
36
                </configuration>
3530 mandeep.dh 37
                <executions>
38
                    <execution>
39
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
40
                        <phase>package</phase> <!-- bind to the packaging phase -->
41
                        <goals>
42
                            <goal>single</goal>
43
                        </goals>
44
                    </execution>
45
                </executions>
3520 mandeep.dh 46
            </plugin>
47
        </plugins>
48
    </build>
49
 
3024 mandeep.dh 50
    <dependencies>
51
        <dependency>
52
            <groupId>junit</groupId>
53
            <artifactId>junit</artifactId>
54
            <version>4.8.2</version>
55
            <scope>test</scope>
56
        </dependency>
57
        <dependency>
3530 mandeep.dh 58
            <groupId>org.apache.thrift</groupId>
59
            <artifactId>libthrift</artifactId>
60
            <version>0.7.0</version>
61
        </dependency>
62
        <dependency>
3153 mandeep.dh 63
            <groupId>log4j</groupId>
3024 mandeep.dh 64
            <artifactId>log4j</artifactId>
65
            <version>1.2.16</version>
66
        </dependency>
67
        <dependency>
3153 mandeep.dh 68
            <groupId>commons-logging</groupId>
3024 mandeep.dh 69
            <artifactId>commons-logging</artifactId>
3153 mandeep.dh 70
            <version>1.1.1</version>
3024 mandeep.dh 71
        </dependency>
72
        <dependency>
73
            <groupId>cglib</groupId>
74
            <artifactId>cglib</artifactId>
75
            <version>2.2</version>
76
        </dependency>
77
        <dependency>
78
            <groupId>commons-pool</groupId>
79
            <artifactId>commons-pool</artifactId>
80
            <version>1.5.6</version>
81
        </dependency>
82
        <dependency>
83
            <groupId>commons-dbcp</groupId>
84
            <artifactId>commons-dbcp</artifactId>
85
            <version>1.4</version>
86
        </dependency>
87
        <dependency>
88
            <groupId>aopalliance</groupId>
89
            <artifactId>aopalliance</artifactId>
90
            <version>1.0</version>
91
        </dependency>
92
        <dependency>
93
            <groupId>org.springframework</groupId>
94
            <artifactId>spring-context</artifactId>
95
            <version>3.0.5.RELEASE</version>
96
        </dependency>
97
        <dependency>
98
            <groupId>org.springframework</groupId>
99
            <artifactId>spring-core</artifactId>
100
            <version>3.0.5.RELEASE</version>
101
        </dependency>
102
        <dependency>
103
            <groupId>org.springframework</groupId>
104
            <artifactId>spring-expression</artifactId>
105
            <version>3.0.5.RELEASE</version>
106
        </dependency>
107
        <dependency>
108
            <groupId>org.springframework</groupId>
109
            <artifactId>spring-jdbc</artifactId>
110
            <version>3.0.5.RELEASE</version>
111
        </dependency>
112
        <dependency>
113
            <groupId>org.springframework</groupId>
114
            <artifactId>spring-tx</artifactId>
115
            <version>3.0.5.RELEASE</version>
116
        </dependency>
117
        <dependency>
118
            <groupId>asm</groupId>
119
            <artifactId>asm</artifactId>
120
            <version>3.1</version>
121
        </dependency>
122
        <dependency>
123
            <groupId>mysql</groupId>
124
            <artifactId>mysql-connector-java</artifactId>
125
            <version>5.1.16</version>
126
        </dependency>
127
        <dependency>
128
            <groupId>org.slf4j</groupId>
129
            <artifactId>slf4j-api</artifactId>
130
            <version>1.6.1</version>
131
        </dependency>
132
        <dependency>
133
            <groupId>org.slf4j</groupId>
134
            <artifactId>slf4j-log4j12</artifactId>
135
            <version>1.6.1</version>
136
        </dependency>
137
        <dependency>
138
            <groupId>org.mybatis</groupId>
139
            <artifactId>mybatis-spring</artifactId>
140
            <version>1.0.0</version>
141
        </dependency>
142
        <dependency>
143
            <groupId>org.mybatis</groupId>
144
            <artifactId>mybatis</artifactId>
145
            <version>3.0.4</version>
146
        </dependency>
147
        <dependency>
148
            <groupId>in.shop2020</groupId>
149
            <artifactId>ThriftConfig</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>
3024 mandeep.dh 161
        </dependency>
162
        <dependency>
163
            <groupId>in.shop2020</groupId>
164
            <artifactId>Common</artifactId>
165
            <version>1.0-SNAPSHOT</version>
3155 mandeep.dh 166
            <exclusions>
167
                <exclusion>
168
                    <groupId>readonly.slf4j</groupId>
169
                    <artifactId>slf4j-api</artifactId>
170
                </exclusion>
171
                <exclusion>
172
                    <groupId>readonly.slf4j</groupId>
173
                    <artifactId>slf4j-simple</artifactId>
174
                </exclusion>
175
            </exclusions>
3024 mandeep.dh 176
        </dependency>
177
    </dependencies>
178
</project>