Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
1040 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>Website</artifactId>
6
  <packaging>war</packaging>
7
  <version>1.0-SNAPSHOT</version>
8
 
9
  <name>Web UI for saholic.com</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
 
18
  <build>
19
    <plugins>
20
      <plugin>
21
        <groupId>org.apache.maven.plugins</groupId>
22
        <artifactId>maven-compiler-plugin</artifactId>
1287 chandransh 23
        <version>2.3.2</version>
1040 chandransh 24
        <configuration>
25
          <debug>true</debug>
26
          <optimize>true</optimize>
27
          <source>1.6</source>
28
          <target>1.6</target>
29
        </configuration>
30
      </plugin>
31
    </plugins>
1335 vikas 32
  </build> 
1487 chandransh 33
 
34
  <profiles>
35
    <profile>
36
      <id>minify</id>
37
      <build>
38
        <plugins>
39
          <plugin>
40
            <groupId>net.alchim31.maven</groupId>
41
            <artifactId>yuicompressor-maven-plugin</artifactId>
42
            <version>1.1</version>
43
            <executions>
44
              <execution>
45
                <goals>
46
                  <!-- <goal>jslint</goal> -->
47
                  <goal>compress</goal>
48
                </goals>
49
              </execution>
50
            </executions>
51
            <configuration>
52
              <linebreakpos>-1</linebreakpos>
53
              <nosuffix>true</nosuffix>
54
              <aggregations>
55
                <aggregation>
56
                  <output>${project.build.directory}/${project.build.finalName}/css/saholic-min.css</output>
57
                  <!-- files to include, path relative to output's directory or absolute path-->
58
                  <!--inputDir>base directory for non absolute includes, default to parent dir of output</inputDir-->
59
                  <inputDir>${project.build.directory}/${project.build.finalName}/css</inputDir>
60
                  <includes>
61
                    <include>style.css</include>
62
                    <include>common.css</include>
63
                    <include>nav.css</include>
64
                    <include>widget.css</include>
65
                    <include>demoStyles.css</include>
66
                    <include>product.css</include>
67
                    <include>cart.css</include>
68
                    <include>contactus.css</include>
69
                    <include>signinsignup.css</include>
70
                    <include>myaccount.css</include>
71
                    <include>gc_safari.css</include>
72
                  </includes>
73
                </aggregation>
74
                <aggregation>
75
                  <output>${project.build.directory}/${project.build.finalName}/js/saholic-min.js</output>
76
                  <!-- files to include, path relative to output's directory or absolute path-->
77
                  <!--inputDir>base directory for non absolute includes, default to parent dir of output</inputDir-->
78
                  <inputDir>${project.build.directory}/${project.build.finalName}/js</inputDir>
79
                  <includes>
80
                    <include>jquery-1.4.2.js</include>
81
                    <include>jquery-ui.min.js</include>
82
                    <include>loginpop.js</include>
83
                    <include>all.js</include>
1516 chandransh 84
                    <include>ga-invoker.js</include>
1487 chandransh 85
                    <include>jquery.truncate.min.js</include>
86
                    <include>charLimit.js</include>
87
                    <include>jsapi.js</include>
88
                    <include>gallery.js</include>
89
                    <include>scrolltab.js</include>
90
                    <include>widget_slidetab.js</include>
91
                    <include>jquery.Storage.js</include>
92
                    <include>jquery.cookie.js</include>
93
                    <include>custom-jquery.js</include>
94
                    <include>myaccount.js</include>
95
                    <include>jquery.number_format.js</include>
96
                    <include>jquery.validate.js</include>
97
                    <include>jquery.tipsy.js</include>
98
                    <include>loopedslider.js</include>
99
                    <include>widget_accordion.js</include>
100
                    <include>shippingAddress.js</include>
101
                    <include>productCategory.js</include>
102
                  </includes>
103
                </aggregation>
104
              </aggregations>
105
            </configuration>
106
          </plugin>
107
          <plugin>
108
            <groupId>org.apache.maven.plugins</groupId>
109
            <artifactId>maven-resources-plugin</artifactId>
110
            <version>2.4.3</version>
111
            <executions>
112
              <execution>
113
                <id>copy-resources</id>
114
                <!-- here the phase you need -->
115
                <phase>compile</phase>
116
                <goals>
117
                  <goal>copy-resources</goal>
118
                </goals>
119
                <configuration>
120
                  <overwrite>true</overwrite>
121
                  <outputDirectory>${project.build.outputDirectory}</outputDirectory>
122
                  <resources>          
123
                    <resource>
124
                      <directory>src/production/resources</directory>
1489 chandransh 125
                      <filtering>true</filtering>
1487 chandransh 126
                    </resource>
127
                  </resources>              
128
                </configuration>            
129
              </execution>
130
            </executions>
131
          </plugin>
132
        </plugins>
133
      </build>
134
    </profile>
135
    <profile>
136
      <build>
137
      </build>
138
    </profile>
139
  </profiles>
1040 chandransh 140
 
141
  <dependencies>
1046 chandransh 142
	<!-- Servlet API is only required at compile time. It
143
	 should be provided by the container at the run time. -->
1040 chandransh 144
    <dependency>
145
      <groupId>readonly.apache</groupId>
146
      <artifactId>servlet-api</artifactId>
147
      <version>2.5</version>
148
      <scope>provided</scope>
149
    </dependency>
1046 chandransh 150
 
151
	<!-- Internal Dependencies -->
1040 chandransh 152
    <dependency>
153
      <groupId>in.shop2020</groupId>
154
      <artifactId>ThriftConfig</artifactId>
155
      <version>1.0-SNAPSHOT</version>
156
    </dependency>
157
    <dependency>
158
      <groupId>in.shop2020</groupId>
159
      <artifactId>Common</artifactId>
160
      <version>1.0-SNAPSHOT</version>
161
    </dependency>
1046 chandransh 162
 
163
	<!-- All the other dependencies. -->
164
	<dependency>
165
      <groupId>readonly.apache</groupId>
166
      <artifactId>commons-codec</artifactId>
167
      <version>1.4</version>
168
    </dependency>
1040 chandransh 169
    <dependency>
170
      <groupId>readonly.apache</groupId>
171
      <artifactId>commons-collections</artifactId>
172
      <version>3.2.1</version>
173
    </dependency>
174
    <dependency>
175
      <groupId>readonly.apache</groupId>
176
      <artifactId>commons-digester</artifactId>
177
      <version>2.0</version>
178
    </dependency>
179
    <dependency>
180
      <groupId>readonly.apache</groupId>
181
      <artifactId>commons-fileupload</artifactId>
182
      <version>1.2.1</version>
183
    </dependency>
184
    <dependency>
185
      <groupId>readonly.apache</groupId>
186
      <artifactId>commons-io</artifactId>
187
      <version>1.3.2</version>
188
    </dependency>
189
    <dependency>
190
      <groupId>readonly.apache</groupId>
191
      <artifactId>commons-lang</artifactId>
192
      <version>2.4</version>
193
    </dependency>
194
    <dependency>
195
      <groupId>readonly.apache</groupId>
196
      <artifactId>commons-logging</artifactId>
197
      <version>1.0.4</version>
198
    </dependency>
199
    <dependency>
200
      <groupId>readonly.apache</groupId>
201
      <artifactId>commons-logging-api</artifactId>
202
      <version>1.1</version>
203
    </dependency>
204
    <dependency>
205
      <groupId>readonly.apache</groupId>
206
      <artifactId>commons-validator</artifactId>
207
      <version>1.3.1</version>
208
    </dependency>
209
    <dependency>
210
      <groupId>readonly.apache</groupId>
211
      <artifactId>ezmorph</artifactId>
212
      <version>1.0.3</version>
213
    </dependency>
214
    <dependency>
215
      <groupId>readonly.apache</groupId>
216
      <artifactId>json-lib</artifactId>
217
      <version>2.1-jdk15</version>
218
    </dependency>
219
    <dependency>
220
      <groupId>readonly.apache</groupId>
221
      <artifactId>jsp-api</artifactId>
222
      <version>2.1</version>
223
    </dependency>
224
    <dependency>
225
      <groupId>readonly.apache</groupId>
1046 chandransh 226
      <artifactId>log4j</artifactId>
227
      <version>1.2.16</version>
228
    </dependency>
229
    <dependency>
230
      <groupId>readonly.apache</groupId>
1040 chandransh 231
      <artifactId>ognl</artifactId>
232
      <version>2.7.3</version>
233
    </dependency>
1046 chandransh 234
    <dependency>
235
      <groupId>readonly.apache.struts</groupId>
236
      <artifactId>struts2-convention-plugin</artifactId>
237
      <version>2.1.8.1</version>
238
    </dependency>
239
    <dependency>
240
      <groupId>readonly.apache.struts</groupId>
241
      <artifactId>struts2-core</artifactId>
242
      <version>2.1.8.1</version>
243
    </dependency>
244
    <dependency>
245
      <groupId>readonly.apache.struts</groupId>
246
      <artifactId>struts2-rest-plugin</artifactId>
247
      <version>2.1.8.1</version>
248
    </dependency>
249
    <dependency>
250
      <groupId>readonly.apache.struts</groupId>
251
      <artifactId>xstream</artifactId>
252
      <version>1.2.2</version>
253
    </dependency>
254
    <dependency>
255
      <groupId>readonly.apache.struts</groupId>
256
      <artifactId>xwork-core</artifactId>
257
      <version>2.1.6</version>
258
    </dependency>
259
    <dependency>
1040 chandransh 260
      <groupId>readonly.apache</groupId>
1046 chandransh 261
      <artifactId>thrift</artifactId>
262
      <version>0.2.0</version>
263
    </dependency>
1040 chandransh 264
    <dependency>
265
      <groupId>readonly.apache</groupId>
266
      <artifactId>velocity</artifactId>
267
      <version>1.6.3</version>
268
    </dependency>
269
    <dependency>
270
      <groupId>readonly.apache</groupId>
271
      <artifactId>velocity-tools</artifactId>
272
      <version>1.4</version>
273
    </dependency>
274
    <dependency>
275
      <groupId>readonly.apache</groupId>
276
      <artifactId>xpp3_min</artifactId>
277
      <version>1.1.3.4.O</version>
278
    </dependency>
279
    <dependency>
280
      <groupId>readonly</groupId>
281
      <artifactId>freemarker</artifactId>
282
      <version>2.3.15</version>
283
    </dependency>
284
    <dependency>
285
      <groupId>readonly.slf4j</groupId>
286
      <artifactId>slf4j-api</artifactId>
287
      <version>1.5.8</version>
288
    </dependency>
289
    <dependency>
290
      <groupId>readonly.slf4j</groupId>
291
      <artifactId>slf4j-simple</artifactId>
292
      <version>1.5.8</version>
293
    </dependency>
1046 chandransh 294
    <dependency>
295
      <groupId>readonly</groupId>
296
      <artifactId>hdfc-payment</artifactId>
297
      <version>1.0</version>
298
    </dependency>
299
    <dependency>
300
      <groupId>readonly</groupId>
301
      <artifactId>yuicompressor</artifactId>
302
      <version>2.4.2</version>
303
    </dependency>
1511 rajveer 304
    <dependency>
305
      <groupId>readonly.nl.bitwalker</groupId>
306
      <artifactId>UserAgentUtils</artifactId>
307
      <version>1.2.3</version>
308
    </dependency>
1040 chandransh 309
  </dependencies>
310
</project>