Subversion Repositories SmartDukaan

Rev

Rev 16643 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3352 mandeep.dh 1
<project
2
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3
    xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
    <modelVersion>4.0.0</modelVersion>
2674 vikas 5
    <groupId>in.shop2020</groupId>
3352 mandeep.dh 6
    <artifactId>Crm</artifactId>
2674 vikas 7
    <version>1.0-SNAPSHOT</version>
3352 mandeep.dh 8
    <packaging>war</packaging>
9
    <name>Crm Maven Webapp</name>
10
    <parent>
11
        <artifactId>parent</artifactId>
12
        <groupId>in.shop2020</groupId>
13
        <version>1.0-SNAPSHOT</version>
14
    </parent>
3090 mandeep.dh 15
 
3352 mandeep.dh 16
    <properties>
17
        <shiro.version>1.1.0</shiro.version>
18
    </properties>
3090 mandeep.dh 19
 
3206 mandeep.dh 20
    <build>
21
        <plugins>
22
            <plugin>
23
                <groupId>org.codehaus.mojo</groupId>
24
                <artifactId>tomcat-maven-plugin</artifactId>
25
                <version>1.1</version>
26
                <configuration>
27
                    <url>http://localhost:8080/manager</url>
28
                    <server>mytomcat</server>
29
                    <path>/crm</path>
30
                </configuration>
31
            </plugin>
3352 mandeep.dh 32
            <plugin>
33
                <artifactId>maven-assembly-plugin</artifactId>
3530 mandeep.dh 34
                <version>2.2.1</version>
3352 mandeep.dh 35
                <configuration>
36
                    <archive>
37
                        <manifest>
38
                            <mainClass>in.shop2020.util.EmailReader</mainClass>
39
                        </manifest>
40
                    </archive>
41
                    <descriptorRefs>
42
                        <descriptorRef>jar-with-dependencies</descriptorRef>
43
                    </descriptorRefs>
44
                </configuration>
3530 mandeep.dh 45
                <executions>
46
                    <execution>
47
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
48
                        <phase>package</phase> <!-- bind to the packaging phase -->
49
                        <goals>
50
                            <goal>single</goal>
51
                        </goals>
52
                    </execution>
53
                </executions>
3352 mandeep.dh 54
            </plugin>
3206 mandeep.dh 55
        </plugins>
56
    </build>
3090 mandeep.dh 57
 
3352 mandeep.dh 58
    <dependencies>
59
        <!-- Servlet API is only required at compile time. It should be provided 
60
            by the container at the run time. -->
61
        <dependency>
62
            <groupId>readonly.apache</groupId>
63
            <artifactId>servlet-api</artifactId>
64
            <version>2.5</version>
65
            <scope>provided</scope>
66
        </dependency>
67
 
68
        <!-- Internal Dependencies -->
69
        <dependency>
70
            <groupId>in.shop2020</groupId>
71
            <artifactId>ThriftConfig</artifactId>
72
            <version>1.0-SNAPSHOT</version>
73
        </dependency>
74
        <dependency>
75
            <groupId>in.shop2020</groupId>
76
            <artifactId>Common</artifactId>
77
            <version>1.0-SNAPSHOT</version>
78
        </dependency>
79
 
80
        <!-- All the other dependencies. -->
81
        <dependency>
82
            <groupId>readonly.apache</groupId>
83
            <artifactId>commons-codec</artifactId>
84
            <version>1.4</version>
85
        </dependency>
86
        <dependency>
87
            <groupId>readonly.apache</groupId>
88
            <artifactId>commons-collections</artifactId>
89
            <version>3.2.1</version>
90
        </dependency>
91
        <dependency>
92
            <groupId>readonly.apache</groupId>
93
            <artifactId>commons-digester</artifactId>
94
            <version>2.0</version>
95
        </dependency>
96
        <dependency>
97
            <groupId>readonly.apache</groupId>
98
            <artifactId>commons-fileupload</artifactId>
99
            <version>1.2.1</version>
100
        </dependency>
101
        <dependency>
102
            <groupId>readonly.apache</groupId>
103
            <artifactId>commons-io</artifactId>
104
            <version>1.3.2</version>
105
        </dependency>
106
        <dependency>
107
            <groupId>readonly.apache</groupId>
108
            <artifactId>commons-lang</artifactId>
109
            <version>2.4</version>
110
        </dependency>
111
        <dependency>
112
            <groupId>readonly.apache</groupId>
113
            <artifactId>commons-logging</artifactId>
114
            <version>1.0.4</version>
115
        </dependency>
116
        <dependency>
117
            <groupId>readonly.apache</groupId>
118
            <artifactId>commons-logging-api</artifactId>
119
            <version>1.1</version>
120
        </dependency>
121
        <dependency>
122
            <groupId>readonly.apache</groupId>
123
            <artifactId>commons-validator</artifactId>
124
            <version>1.3.1</version>
125
        </dependency>
126
        <dependency>
127
            <groupId>readonly.apache</groupId>
128
            <artifactId>ezmorph</artifactId>
129
            <version>1.0.3</version>
130
        </dependency>
131
        <dependency>
132
            <groupId>readonly.apache</groupId>
133
            <artifactId>json-lib</artifactId>
134
            <version>2.1-jdk15</version>
135
        </dependency>
136
        <dependency>
137
            <groupId>readonly.apache</groupId>
138
            <artifactId>jsp-api</artifactId>
139
            <version>2.1</version>
140
        </dependency>
141
        <dependency>
142
            <groupId>readonly.apache</groupId>
143
            <artifactId>log4j</artifactId>
144
            <version>1.2.16</version>
145
        </dependency>
146
        <dependency>
147
            <groupId>readonly.apache</groupId>
148
            <artifactId>ognl</artifactId>
149
            <version>2.7.3</version>
150
        </dependency>
151
        <dependency>
152
            <groupId>readonly.apache.struts</groupId>
153
            <artifactId>struts2-convention-plugin</artifactId>
154
            <version>2.1.8.1</version>
155
        </dependency>
156
        <dependency>
157
            <groupId>readonly.apache.struts</groupId>
158
            <artifactId>struts2-core</artifactId>
159
            <version>2.1.8.1</version>
160
        </dependency>
161
        <dependency>
162
            <groupId>readonly.apache.struts</groupId>
163
            <artifactId>struts2-rest-plugin</artifactId>
164
            <version>2.1.8.1</version>
165
        </dependency>
166
        <dependency>
167
            <groupId>readonly.apache.struts</groupId>
168
            <artifactId>xstream</artifactId>
169
            <version>1.2.2</version>
170
        </dependency>
171
        <dependency>
172
            <groupId>readonly.apache.struts</groupId>
173
            <artifactId>xwork-core</artifactId>
174
            <version>2.1.6</version>
175
        </dependency>
176
        <dependency>
3530 mandeep.dh 177
            <groupId>org.apache.thrift</groupId>
178
            <artifactId>libthrift</artifactId>
179
            <version>0.7.0</version>
180
            <exclusions>
181
                <exclusion>
182
                    <groupId>commons-codec</groupId>
183
                    <artifactId>commons-codec</artifactId>
184
                </exclusion>
185
            </exclusions>
186
        </dependency>
187
        <dependency>
3352 mandeep.dh 188
            <groupId>readonly.apache</groupId>
189
            <artifactId>velocity</artifactId>
190
            <version>1.6.3</version>
191
        </dependency>
192
        <dependency>
193
            <groupId>readonly.apache</groupId>
194
            <artifactId>velocity-tools</artifactId>
195
            <version>1.4</version>
196
        </dependency>
197
        <dependency>
198
            <groupId>readonly.apache</groupId>
199
            <artifactId>xpp3_min</artifactId>
200
            <version>1.1.3.4.O</version>
201
        </dependency>
202
        <dependency>
203
            <groupId>readonly</groupId>
204
            <artifactId>freemarker</artifactId>
205
            <version>2.3.15</version>
206
        </dependency>
207
        <dependency>
208
            <groupId>readonly</groupId>
209
            <artifactId>yuicompressor</artifactId>
210
            <version>2.4.2</version>
211
        </dependency>
212
        <dependency>
213
            <groupId>org.apache.shiro</groupId>
214
            <artifactId>shiro-core</artifactId>
215
            <version>${shiro.version}</version>
216
        </dependency>
217
        <dependency>
218
            <groupId>org.apache.shiro</groupId>
219
            <artifactId>shiro-web</artifactId>
220
            <version>${shiro.version}</version>
221
        </dependency>
3546 mandeep.dh 222
        <dependency>
223
            <groupId>net.htmlparser.jericho</groupId>
224
            <artifactId>jericho-html</artifactId>
225
            <version>3.1</version>
226
        </dependency>
7941 manish.sha 227
        <dependency>
228
        	<groupId>ShipDEWebServiceClient</groupId>
229
        	<artifactId>ShipDEWebServiceClient</artifactId>
230
        	<version>1.0-SNAPSHOT</version>
231
        </dependency>
16525 manish.sha 232
        <dependency>
16654 manish.sha 233
            <groupId>com.sendgrid</groupId>
234
            <artifactId>smtpapi-java</artifactId>
235
            <version>1.1.1</version>
16525 manish.sha 236
        </dependency>
16529 manish.sha 237
        <dependency>
16654 manish.sha 238
            <groupId>org.apache.httpcomponents</groupId>
239
            <artifactId>httpcore</artifactId>
240
            <version>4.3.2</version>
241
        </dependency>
242
        <dependency>
243
            <groupId>org.apache.httpcomponents</groupId>
244
            <artifactId>httpclient</artifactId>
245
            <version>4.3.4</version>
246
        </dependency>
247
        <dependency>
248
            <groupId>org.apache.httpcomponents</groupId>
249
            <artifactId>httpmime</artifactId>
250
            <version>4.3.4</version>
251
        </dependency>
252
        <dependency>
253
            <groupId>org.json</groupId>
254
            <artifactId>json</artifactId>
255
            <version>20140107</version>
256
        </dependency>
257
        <dependency>
258
            <groupId>junit</groupId>
259
            <artifactId>junit-dep</artifactId>
260
            <version>4.10</version>
261
            <scope>test</scope>
262
        </dependency>
3352 mandeep.dh 263
    </dependencies>
2674 vikas 264
</project>