Subversion Repositories SmartDukaan

Rev

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