| 1164 |
chandransh |
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/maven-v4_0_0.xsd">
|
|
|
3 |
<modelVersion>4.0.0</modelVersion>
|
|
|
4 |
<groupId>in.shop2020</groupId>
|
|
|
5 |
<artifactId>ContentCreation</artifactId>
|
| 1693 |
chandransh |
6 |
<packaging>war</packaging>
|
| 1164 |
chandransh |
7 |
<version>1.0-SNAPSHOT</version>
|
|
|
8 |
|
|
|
9 |
<name>Content Creation</name>
|
|
|
10 |
<url>http://shop2020.in</url>
|
|
|
11 |
|
|
|
12 |
<parent>
|
|
|
13 |
<groupId>in.shop2020</groupId>
|
|
|
14 |
<artifactId>parent</artifactId>
|
|
|
15 |
<version>1.0-SNAPSHOT</version>
|
|
|
16 |
</parent>
|
|
|
17 |
<build>
|
|
|
18 |
<plugins>
|
|
|
19 |
<plugin>
|
|
|
20 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
21 |
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
22 |
<version>2.3.2</version>
|
|
|
23 |
<configuration>
|
|
|
24 |
<debug>true</debug>
|
|
|
25 |
<optimize>true</optimize>
|
|
|
26 |
<source>1.6</source>
|
|
|
27 |
<target>1.6</target>
|
|
|
28 |
</configuration>
|
|
|
29 |
</plugin>
|
|
|
30 |
</plugins>
|
|
|
31 |
</build>
|
|
|
32 |
|
|
|
33 |
<dependencies>
|
|
|
34 |
<!-- Servlet API is only required at compile time. It
|
|
|
35 |
should be provided by the container at the run time. -->
|
|
|
36 |
<dependency>
|
|
|
37 |
<groupId>readonly.apache</groupId>
|
|
|
38 |
<artifactId>servlet-api</artifactId>
|
|
|
39 |
<version>2.5</version>
|
|
|
40 |
<scope>provided</scope>
|
|
|
41 |
</dependency>
|
|
|
42 |
|
|
|
43 |
<!-- Internal Dependencies -->
|
|
|
44 |
<dependency>
|
|
|
45 |
<groupId>in.shop2020</groupId>
|
|
|
46 |
<artifactId>ThriftConfig</artifactId>
|
|
|
47 |
<version>1.0-SNAPSHOT</version>
|
|
|
48 |
</dependency>
|
|
|
49 |
<dependency>
|
|
|
50 |
<groupId>in.shop2020</groupId>
|
|
|
51 |
<artifactId>Common</artifactId>
|
|
|
52 |
<version>1.0-SNAPSHOT</version>
|
|
|
53 |
</dependency>
|
|
|
54 |
<dependency>
|
|
|
55 |
<groupId>in.shop2020</groupId>
|
|
|
56 |
<artifactId>ContentStore</artifactId>
|
|
|
57 |
<version>1.0-SNAPSHOT</version>
|
|
|
58 |
</dependency>
|
|
|
59 |
|
|
|
60 |
<!-- All the other dependencies. -->
|
|
|
61 |
<dependency>
|
|
|
62 |
<groupId>readonly.apache</groupId>
|
|
|
63 |
<artifactId>commons-beanutils</artifactId>
|
|
|
64 |
<version>1.7.0</version>
|
|
|
65 |
</dependency>
|
|
|
66 |
<dependency>
|
|
|
67 |
<groupId>readonly.apache</groupId>
|
|
|
68 |
<artifactId>commons-collections</artifactId>
|
|
|
69 |
<version>3.2.1</version>
|
|
|
70 |
</dependency>
|
|
|
71 |
<dependency>
|
|
|
72 |
<groupId>readonly.apache</groupId>
|
|
|
73 |
<artifactId>commons-digester</artifactId>
|
|
|
74 |
<version>2.0</version>
|
|
|
75 |
</dependency>
|
|
|
76 |
<dependency>
|
|
|
77 |
<groupId>readonly.apache</groupId>
|
|
|
78 |
<artifactId>commons-fileupload</artifactId>
|
|
|
79 |
<version>1.2.1</version>
|
|
|
80 |
</dependency>
|
|
|
81 |
<dependency>
|
|
|
82 |
<groupId>readonly.apache</groupId>
|
|
|
83 |
<artifactId>commons-io</artifactId>
|
|
|
84 |
<version>1.3.2</version>
|
|
|
85 |
</dependency>
|
|
|
86 |
<dependency>
|
|
|
87 |
<groupId>readonly.apache</groupId>
|
|
|
88 |
<artifactId>commons-lang</artifactId>
|
|
|
89 |
<version>2.4</version>
|
|
|
90 |
</dependency>
|
|
|
91 |
<dependency>
|
|
|
92 |
<groupId>readonly.apache</groupId>
|
|
|
93 |
<artifactId>commons-logging</artifactId>
|
|
|
94 |
<version>1.0.4</version>
|
|
|
95 |
</dependency>
|
|
|
96 |
<dependency>
|
|
|
97 |
<groupId>readonly.apache</groupId>
|
|
|
98 |
<artifactId>commons-logging-api</artifactId>
|
|
|
99 |
<version>1.1</version>
|
|
|
100 |
</dependency>
|
|
|
101 |
<dependency>
|
|
|
102 |
<groupId>readonly.apache</groupId>
|
|
|
103 |
<artifactId>commons-validator</artifactId>
|
|
|
104 |
<version>1.3.1</version>
|
|
|
105 |
</dependency>
|
|
|
106 |
<dependency>
|
|
|
107 |
<groupId>readonly.apache</groupId>
|
|
|
108 |
<artifactId>ezmorph</artifactId>
|
|
|
109 |
<version>1.0.3</version>
|
|
|
110 |
</dependency>
|
|
|
111 |
<dependency>
|
|
|
112 |
<groupId>readonly.apache</groupId>
|
|
|
113 |
<artifactId>json-lib</artifactId>
|
|
|
114 |
<version>2.1-jdk15</version>
|
|
|
115 |
</dependency>
|
|
|
116 |
<dependency>
|
|
|
117 |
<groupId>readonly.apache</groupId>
|
|
|
118 |
<artifactId>jsp-api</artifactId>
|
|
|
119 |
<version>2.1</version>
|
|
|
120 |
</dependency>
|
|
|
121 |
<dependency>
|
|
|
122 |
<groupId>readonly.apache</groupId>
|
|
|
123 |
<artifactId>ognl</artifactId>
|
|
|
124 |
<version>2.7.3</version>
|
|
|
125 |
</dependency>
|
|
|
126 |
<dependency>
|
|
|
127 |
<groupId>readonly.apache.struts</groupId>
|
|
|
128 |
<artifactId>struts2-convention-plugin</artifactId>
|
|
|
129 |
<version>2.1.8.1</version>
|
|
|
130 |
</dependency>
|
|
|
131 |
<dependency>
|
|
|
132 |
<groupId>readonly.apache.struts</groupId>
|
|
|
133 |
<artifactId>struts2-core</artifactId>
|
|
|
134 |
<version>2.1.8.1</version>
|
|
|
135 |
</dependency>
|
|
|
136 |
<dependency>
|
|
|
137 |
<groupId>readonly.apache.struts</groupId>
|
|
|
138 |
<artifactId>struts2-rest-plugin</artifactId>
|
|
|
139 |
<version>2.1.8.1</version>
|
|
|
140 |
</dependency>
|
|
|
141 |
<dependency>
|
|
|
142 |
<groupId>readonly.apache.struts</groupId>
|
|
|
143 |
<artifactId>xstream</artifactId>
|
|
|
144 |
<version>1.2.2</version>
|
|
|
145 |
</dependency>
|
|
|
146 |
<dependency>
|
|
|
147 |
<groupId>readonly.apache.struts</groupId>
|
|
|
148 |
<artifactId>xwork-core</artifactId>
|
|
|
149 |
<version>2.1.6</version>
|
|
|
150 |
</dependency>
|
|
|
151 |
<dependency>
|
| 3435 |
rajveer |
152 |
<groupId>org.apache.thrift</groupId>
|
|
|
153 |
<artifactId>libthrift</artifactId>
|
|
|
154 |
<version>0.7.0</version>
|
|
|
155 |
<exclusions>
|
|
|
156 |
<exclusion>
|
|
|
157 |
<groupId>commons-codec</groupId>
|
|
|
158 |
<artifactId>commons-codec</artifactId>
|
|
|
159 |
</exclusion>
|
|
|
160 |
</exclusions>
|
|
|
161 |
</dependency>
|
| 1164 |
chandransh |
162 |
<dependency>
|
|
|
163 |
<groupId>readonly.apache</groupId>
|
| 1693 |
chandransh |
164 |
<artifactId>tomcat-juli</artifactId>
|
|
|
165 |
<version>unknown</version>
|
|
|
166 |
</dependency>
|
|
|
167 |
<dependency>
|
|
|
168 |
<groupId>readonly.apache</groupId>
|
| 1164 |
chandransh |
169 |
<artifactId>velocity</artifactId>
|
|
|
170 |
<version>1.6.3</version>
|
|
|
171 |
</dependency>
|
|
|
172 |
<dependency>
|
|
|
173 |
<groupId>readonly.apache</groupId>
|
|
|
174 |
<artifactId>velocity-tools</artifactId>
|
|
|
175 |
<version>1.4</version>
|
|
|
176 |
</dependency>
|
|
|
177 |
<dependency>
|
|
|
178 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
179 |
<artifactId>serializer</artifactId>
|
|
|
180 |
<version>j_2_7_1</version>
|
|
|
181 |
</dependency>
|
|
|
182 |
<dependency>
|
|
|
183 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
184 |
<artifactId>xalan</artifactId>
|
|
|
185 |
<version>j_2_7_1</version>
|
|
|
186 |
</dependency>
|
|
|
187 |
<dependency>
|
|
|
188 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
189 |
<artifactId>xercesImpl</artifactId>
|
|
|
190 |
<version>j_2_7_1</version>
|
|
|
191 |
</dependency>
|
|
|
192 |
<dependency>
|
|
|
193 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
194 |
<artifactId>xml-apis</artifactId>
|
|
|
195 |
<version>j_2_7_1</version>
|
|
|
196 |
</dependency>
|
|
|
197 |
<dependency>
|
|
|
198 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
199 |
<artifactId>xsltc</artifactId>
|
|
|
200 |
<version>j_2_7_1</version>
|
|
|
201 |
</dependency>
|
|
|
202 |
<dependency>
|
|
|
203 |
<groupId>readonly.apache</groupId>
|
|
|
204 |
<artifactId>xpp3_min</artifactId>
|
|
|
205 |
<version>1.1.3.4.O</version>
|
|
|
206 |
</dependency>
|
|
|
207 |
<dependency>
|
|
|
208 |
<groupId>readonly</groupId>
|
|
|
209 |
<artifactId>freemarker</artifactId>
|
|
|
210 |
<version>2.3.15</version>
|
|
|
211 |
</dependency>
|
|
|
212 |
<dependency>
|
|
|
213 |
<groupId>readonly.slf4j</groupId>
|
|
|
214 |
<artifactId>slf4j-api</artifactId>
|
|
|
215 |
<version>1.5.8</version>
|
|
|
216 |
</dependency>
|
|
|
217 |
<dependency>
|
|
|
218 |
<groupId>readonly.slf4j</groupId>
|
|
|
219 |
<artifactId>slf4j-simple</artifactId>
|
|
|
220 |
<version>1.5.8</version>
|
|
|
221 |
</dependency>
|
|
|
222 |
</dependencies>
|
|
|
223 |
</project>
|