Subversion Repositories SmartDukaan

Rev

Rev 3090 | Rev 3352 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2674 vikas 1
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
2
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3
  <modelVersion>4.0.0</modelVersion>
4
  <groupId>in.shop2020</groupId>
5
  <artifactId>Crm</artifactId>
6
  <version>1.0-SNAPSHOT</version>
7
  <packaging>war</packaging>
8
  <name>Crm Maven Webapp</name>
9
  <parent>
10
    <artifactId>parent</artifactId>
11
    <groupId>in.shop2020</groupId>
12
    <version>1.0-SNAPSHOT</version>
13
  </parent>
3090 mandeep.dh 14
 
15
  <properties>
16
    <shiro.version>1.1.0</shiro.version>
17
  </properties>
18
 
3206 mandeep.dh 19
    <build>
20
        <plugins>
21
            <plugin>
22
                <groupId>org.codehaus.mojo</groupId>
23
                <artifactId>tomcat-maven-plugin</artifactId>
24
                <version>1.1</version>
25
                <configuration>
26
                    <url>http://localhost:8080/manager</url>
27
                    <server>mytomcat</server>
28
                    <path>/crm</path>
29
                </configuration>
30
            </plugin>
31
        </plugins>
32
    </build>
3090 mandeep.dh 33
 
2674 vikas 34
  <dependencies>
35
    <!-- Servlet API is only required at compile time. It
36
     should be provided by the container at the run time. -->
37
    <dependency>
38
      <groupId>readonly.apache</groupId>
39
      <artifactId>servlet-api</artifactId>
40
      <version>2.5</version>
41
      <scope>provided</scope>
42
    </dependency>
43
 
44
    <!-- Internal Dependencies -->
45
    <dependency>
46
      <groupId>in.shop2020</groupId>
47
      <artifactId>ThriftConfig</artifactId>
48
      <version>1.0-SNAPSHOT</version>
49
    </dependency>
50
    <dependency>
51
      <groupId>in.shop2020</groupId>
52
      <artifactId>Common</artifactId>
53
      <version>1.0-SNAPSHOT</version>
54
    </dependency>
55
 
56
    <!-- All the other dependencies. -->
57
    <dependency>
58
      <groupId>readonly.apache</groupId>
59
      <artifactId>commons-codec</artifactId>
60
      <version>1.4</version>
61
    </dependency>
62
    <dependency>
63
      <groupId>readonly.apache</groupId>
64
      <artifactId>commons-collections</artifactId>
65
      <version>3.2.1</version>
66
    </dependency>
67
    <dependency>
68
      <groupId>readonly.apache</groupId>
69
      <artifactId>commons-digester</artifactId>
70
      <version>2.0</version>
71
    </dependency>
72
    <dependency>
73
      <groupId>readonly.apache</groupId>
74
      <artifactId>commons-fileupload</artifactId>
75
      <version>1.2.1</version>
76
    </dependency>
77
    <dependency>
78
      <groupId>readonly.apache</groupId>
79
      <artifactId>commons-io</artifactId>
80
      <version>1.3.2</version>
81
    </dependency>
82
    <dependency>
83
      <groupId>readonly.apache</groupId>
84
      <artifactId>commons-lang</artifactId>
85
      <version>2.4</version>
86
    </dependency>
87
    <dependency>
88
      <groupId>readonly.apache</groupId>
89
      <artifactId>commons-logging</artifactId>
90
      <version>1.0.4</version>
91
    </dependency>
92
    <dependency>
93
      <groupId>readonly.apache</groupId>
94
      <artifactId>commons-logging-api</artifactId>
95
      <version>1.1</version>
96
    </dependency>
97
    <dependency>
98
      <groupId>readonly.apache</groupId>
99
      <artifactId>commons-validator</artifactId>
100
      <version>1.3.1</version>
101
    </dependency>
102
    <dependency>
103
      <groupId>readonly.apache</groupId>
104
      <artifactId>ezmorph</artifactId>
105
      <version>1.0.3</version>
106
    </dependency>
107
    <dependency>
108
      <groupId>readonly.apache</groupId>
109
      <artifactId>json-lib</artifactId>
110
      <version>2.1-jdk15</version>
111
    </dependency>
112
    <dependency>
113
      <groupId>readonly.apache</groupId>
114
      <artifactId>jsp-api</artifactId>
115
      <version>2.1</version>
116
    </dependency>
117
    <dependency>
118
      <groupId>readonly.apache</groupId>
119
      <artifactId>log4j</artifactId>
120
      <version>1.2.16</version>
121
    </dependency>
122
    <dependency>
123
      <groupId>readonly.apache</groupId>
124
      <artifactId>ognl</artifactId>
125
      <version>2.7.3</version>
126
    </dependency>
127
    <dependency>
128
      <groupId>readonly.apache.struts</groupId>
129
      <artifactId>struts2-convention-plugin</artifactId>
130
      <version>2.1.8.1</version>
131
    </dependency>
132
    <dependency>
133
      <groupId>readonly.apache.struts</groupId>
134
      <artifactId>struts2-core</artifactId>
135
      <version>2.1.8.1</version>
136
    </dependency>
137
    <dependency>
138
      <groupId>readonly.apache.struts</groupId>
139
      <artifactId>struts2-rest-plugin</artifactId>
140
      <version>2.1.8.1</version>
141
    </dependency>
142
    <dependency>
143
      <groupId>readonly.apache.struts</groupId>
144
      <artifactId>xstream</artifactId>
145
      <version>1.2.2</version>
146
    </dependency>
147
    <dependency>
148
      <groupId>readonly.apache.struts</groupId>
149
      <artifactId>xwork-core</artifactId>
150
      <version>2.1.6</version>
151
    </dependency>
152
    <dependency>
153
      <groupId>readonly.apache</groupId>
154
      <artifactId>thrift</artifactId>
155
      <version>0.2.0</version>
156
    </dependency>
157
    <dependency>
158
      <groupId>readonly.apache</groupId>
159
      <artifactId>velocity</artifactId>
160
      <version>1.6.3</version>
161
    </dependency>
162
    <dependency>
163
      <groupId>readonly.apache</groupId>
164
      <artifactId>velocity-tools</artifactId>
165
      <version>1.4</version>
166
    </dependency>
167
    <dependency>
168
      <groupId>readonly.apache</groupId>
169
      <artifactId>xpp3_min</artifactId>
170
      <version>1.1.3.4.O</version>
171
    </dependency>
172
    <dependency>
173
      <groupId>readonly</groupId>
174
      <artifactId>freemarker</artifactId>
175
      <version>2.3.15</version>
176
    </dependency>
177
    <dependency>
178
      <groupId>readonly</groupId>
179
      <artifactId>yuicompressor</artifactId>
180
      <version>2.4.2</version>
181
    </dependency>
182
    <dependency>
183
        <groupId>org.json</groupId>
184
        <artifactId>json</artifactId>
185
        <version>20090211</version>
186
    </dependency>
3090 mandeep.dh 187
    <dependency>
188
        <groupId>org.apache.shiro</groupId>
189
        <artifactId>shiro-core</artifactId>
190
        <version>${shiro.version}</version>
191
    </dependency>
192
    <dependency>
193
        <groupId>org.apache.shiro</groupId>
194
        <artifactId>shiro-web</artifactId>
195
        <version>${shiro.version}</version>
196
    </dependency>
2674 vikas 197
  </dependencies>
198
</project>