Subversion Repositories SmartDukaan

Rev

Rev 3206 | Rev 3435 | Go to most recent revision | 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>
34
                <configuration>
35
                    <archive>
36
                        <manifest>
37
                            <mainClass>in.shop2020.util.EmailReader</mainClass>
38
                        </manifest>
39
                    </archive>
40
                    <descriptorRefs>
41
                        <descriptorRef>jar-with-dependencies</descriptorRef>
42
                    </descriptorRefs>
43
                </configuration>
44
            </plugin>
3206 mandeep.dh 45
        </plugins>
46
    </build>
3090 mandeep.dh 47
 
3352 mandeep.dh 48
    <dependencies>
49
        <!-- Servlet API is only required at compile time. It should be provided 
50
            by the container at the run time. -->
51
        <dependency>
52
            <groupId>readonly.apache</groupId>
53
            <artifactId>servlet-api</artifactId>
54
            <version>2.5</version>
55
            <scope>provided</scope>
56
        </dependency>
57
 
58
        <!-- Internal Dependencies -->
59
        <dependency>
60
            <groupId>in.shop2020</groupId>
61
            <artifactId>ThriftConfig</artifactId>
62
            <version>1.0-SNAPSHOT</version>
63
        </dependency>
64
        <dependency>
65
            <groupId>in.shop2020</groupId>
66
            <artifactId>Common</artifactId>
67
            <version>1.0-SNAPSHOT</version>
68
        </dependency>
69
 
70
        <!-- All the other dependencies. -->
71
        <dependency>
72
            <groupId>readonly.apache</groupId>
73
            <artifactId>commons-codec</artifactId>
74
            <version>1.4</version>
75
        </dependency>
76
        <dependency>
77
            <groupId>readonly.apache</groupId>
78
            <artifactId>commons-collections</artifactId>
79
            <version>3.2.1</version>
80
        </dependency>
81
        <dependency>
82
            <groupId>readonly.apache</groupId>
83
            <artifactId>commons-digester</artifactId>
84
            <version>2.0</version>
85
        </dependency>
86
        <dependency>
87
            <groupId>readonly.apache</groupId>
88
            <artifactId>commons-fileupload</artifactId>
89
            <version>1.2.1</version>
90
        </dependency>
91
        <dependency>
92
            <groupId>readonly.apache</groupId>
93
            <artifactId>commons-io</artifactId>
94
            <version>1.3.2</version>
95
        </dependency>
96
        <dependency>
97
            <groupId>readonly.apache</groupId>
98
            <artifactId>commons-lang</artifactId>
99
            <version>2.4</version>
100
        </dependency>
101
        <dependency>
102
            <groupId>readonly.apache</groupId>
103
            <artifactId>commons-logging</artifactId>
104
            <version>1.0.4</version>
105
        </dependency>
106
        <dependency>
107
            <groupId>readonly.apache</groupId>
108
            <artifactId>commons-logging-api</artifactId>
109
            <version>1.1</version>
110
        </dependency>
111
        <dependency>
112
            <groupId>readonly.apache</groupId>
113
            <artifactId>commons-validator</artifactId>
114
            <version>1.3.1</version>
115
        </dependency>
116
        <dependency>
117
            <groupId>readonly.apache</groupId>
118
            <artifactId>ezmorph</artifactId>
119
            <version>1.0.3</version>
120
        </dependency>
121
        <dependency>
122
            <groupId>readonly.apache</groupId>
123
            <artifactId>json-lib</artifactId>
124
            <version>2.1-jdk15</version>
125
        </dependency>
126
        <dependency>
127
            <groupId>readonly.apache</groupId>
128
            <artifactId>jsp-api</artifactId>
129
            <version>2.1</version>
130
        </dependency>
131
        <dependency>
132
            <groupId>readonly.apache</groupId>
133
            <artifactId>log4j</artifactId>
134
            <version>1.2.16</version>
135
        </dependency>
136
        <dependency>
137
            <groupId>readonly.apache</groupId>
138
            <artifactId>ognl</artifactId>
139
            <version>2.7.3</version>
140
        </dependency>
141
        <dependency>
142
            <groupId>readonly.apache.struts</groupId>
143
            <artifactId>struts2-convention-plugin</artifactId>
144
            <version>2.1.8.1</version>
145
        </dependency>
146
        <dependency>
147
            <groupId>readonly.apache.struts</groupId>
148
            <artifactId>struts2-core</artifactId>
149
            <version>2.1.8.1</version>
150
        </dependency>
151
        <dependency>
152
            <groupId>readonly.apache.struts</groupId>
153
            <artifactId>struts2-rest-plugin</artifactId>
154
            <version>2.1.8.1</version>
155
        </dependency>
156
        <dependency>
157
            <groupId>readonly.apache.struts</groupId>
158
            <artifactId>xstream</artifactId>
159
            <version>1.2.2</version>
160
        </dependency>
161
        <dependency>
162
            <groupId>readonly.apache.struts</groupId>
163
            <artifactId>xwork-core</artifactId>
164
            <version>2.1.6</version>
165
        </dependency>
166
        <dependency>
167
            <groupId>readonly.apache</groupId>
168
            <artifactId>thrift</artifactId>
169
            <version>0.2.0</version>
170
        </dependency>
171
        <dependency>
172
            <groupId>readonly.apache</groupId>
173
            <artifactId>velocity</artifactId>
174
            <version>1.6.3</version>
175
        </dependency>
176
        <dependency>
177
            <groupId>readonly.apache</groupId>
178
            <artifactId>velocity-tools</artifactId>
179
            <version>1.4</version>
180
        </dependency>
181
        <dependency>
182
            <groupId>readonly.apache</groupId>
183
            <artifactId>xpp3_min</artifactId>
184
            <version>1.1.3.4.O</version>
185
        </dependency>
186
        <dependency>
187
            <groupId>readonly</groupId>
188
            <artifactId>freemarker</artifactId>
189
            <version>2.3.15</version>
190
        </dependency>
191
        <dependency>
192
            <groupId>readonly</groupId>
193
            <artifactId>yuicompressor</artifactId>
194
            <version>2.4.2</version>
195
        </dependency>
196
        <dependency>
197
            <groupId>org.json</groupId>
198
            <artifactId>json</artifactId>
199
            <version>20090211</version>
200
        </dependency>
201
        <dependency>
202
            <groupId>org.apache.shiro</groupId>
203
            <artifactId>shiro-core</artifactId>
204
            <version>${shiro.version}</version>
205
        </dependency>
206
        <dependency>
207
            <groupId>org.apache.shiro</groupId>
208
            <artifactId>shiro-web</artifactId>
209
            <version>${shiro.version}</version>
210
        </dependency>
211
    </dependencies>
2674 vikas 212
</project>