Subversion Repositories SmartDukaan

Rev

Rev 1335 | Rev 1421 | 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>
1335 vikas 31
 
1048 chandransh 32
      <plugin>
33
        <groupId>net.alchim31.maven</groupId>
34
        <artifactId>yuicompressor-maven-plugin</artifactId>
35
        <executions>
36
          <execution>
37
            <goals>
38
              <goal>jslint</goal>
1335 vikas 39
              <goal>compress</goal>
1048 chandransh 40
            </goals>
41
          </execution>
42
        </executions>
43
        <configuration>
1335 vikas 44
          <nosuffix>true</nosuffix>
45
          <aggregations>
46
            <aggregation>
47
              <!-- insert new line after each concatenation (default: false) -->
48
              <insertNewLine>true</insertNewLine>
49
              <output>${project.build.directory}/${project.build.finalName}/css/saholic-min.css</output>
50
              <!-- files to include, path relative to output's directory or absolute path-->
51
              <!--inputDir>base directory for non absolute includes, default to parent dir of output</inputDir-->
52
              <inputDir>${project.build.directory}/${project.build.finalName}/css</inputDir>
53
              <includes>
54
                <include>style.css</include>
55
                <include>common.css</include>
56
                <include>nav.css</include>
57
                <include>widget.css</include>
58
                <include>demoStyles.css</include>
59
                <include>product.css</include>
60
                <include>cart.css</include>
61
                <include>contactus.css</include>
62
                <include>signinsignup.css</include>
63
                <include>myaccount.css</include>
64
                <include>gc_safari.css</include>
65
              </includes>
66
            </aggregation>
67
            <aggregation>
68
              <!-- insert new line after each concatenation (default: false) -->
69
              <insertNewLine>true</insertNewLine>
70
              <output>${project.build.directory}/${project.build.finalName}/js/saholic-min.js</output>
71
              <!-- files to include, path relative to output's directory or absolute path-->
72
              <!--inputDir>base directory for non absolute includes, default to parent dir of output</inputDir-->
73
              <inputDir>${project.build.directory}/${project.build.finalName}/js</inputDir>
74
              <includes>
75
                <include>jquery-1.4.2.js</include>
76
                <include>jquery-ui.min.js</include>
77
                <include>loginpop.js</include>
78
                <include>all.js</include>
79
                <include>jquery.truncate.min.js</include>
80
                <include>charLimit.js</include>
81
                <include>jsapi.js</include>
82
                <include>gallery.js</include>
83
                <include>scrolltab.js</include>
84
                <include>widget_slidetab.js</include>
1372 vikas 85
                <include>jquery.Storage.js</include>
86
                <include>jquery.cookie.js</include>
1335 vikas 87
                <include>custom-jquery.js</include>
88
                <include>myaccount.js</include>
89
                <include>jquery.number_format.js</include>
90
                <include>jquery.validate.js</include>
91
                <include>jquery.tipsy.js</include>
92
                <include>loopedslider.js</include>
93
                <include>widget_accordion.js</include>
94
                <include>shippingAddress.js</include>
95
                <include>productCategory.js</include>
96
              </includes>
97
            </aggregation>
98
          </aggregations>
1048 chandransh 99
        </configuration>
1335 vikas 100
      </plugin>
1040 chandransh 101
    </plugins>
1335 vikas 102
  </build> 
1040 chandransh 103
 
104
  <dependencies>
1046 chandransh 105
	<!-- Servlet API is only required at compile time. It
106
	 should be provided by the container at the run time. -->
1040 chandransh 107
    <dependency>
108
      <groupId>readonly.apache</groupId>
109
      <artifactId>servlet-api</artifactId>
110
      <version>2.5</version>
111
      <scope>provided</scope>
112
    </dependency>
1046 chandransh 113
 
114
	<!-- Internal Dependencies -->
1040 chandransh 115
    <dependency>
116
      <groupId>in.shop2020</groupId>
117
      <artifactId>ThriftConfig</artifactId>
118
      <version>1.0-SNAPSHOT</version>
119
    </dependency>
120
    <dependency>
121
      <groupId>in.shop2020</groupId>
122
      <artifactId>Common</artifactId>
123
      <version>1.0-SNAPSHOT</version>
124
    </dependency>
1046 chandransh 125
 
126
	<!-- All the other dependencies. -->
127
	<dependency>
128
      <groupId>readonly.apache</groupId>
129
      <artifactId>commons-codec</artifactId>
130
      <version>1.4</version>
131
    </dependency>
1040 chandransh 132
    <dependency>
133
      <groupId>readonly.apache</groupId>
134
      <artifactId>commons-collections</artifactId>
135
      <version>3.2.1</version>
136
    </dependency>
137
    <dependency>
138
      <groupId>readonly.apache</groupId>
139
      <artifactId>commons-digester</artifactId>
140
      <version>2.0</version>
141
    </dependency>
142
    <dependency>
143
      <groupId>readonly.apache</groupId>
144
      <artifactId>commons-fileupload</artifactId>
145
      <version>1.2.1</version>
146
    </dependency>
147
    <dependency>
148
      <groupId>readonly.apache</groupId>
149
      <artifactId>commons-io</artifactId>
150
      <version>1.3.2</version>
151
    </dependency>
152
    <dependency>
153
      <groupId>readonly.apache</groupId>
154
      <artifactId>commons-lang</artifactId>
155
      <version>2.4</version>
156
    </dependency>
157
    <dependency>
158
      <groupId>readonly.apache</groupId>
159
      <artifactId>commons-logging</artifactId>
160
      <version>1.0.4</version>
161
    </dependency>
162
    <dependency>
163
      <groupId>readonly.apache</groupId>
164
      <artifactId>commons-logging-api</artifactId>
165
      <version>1.1</version>
166
    </dependency>
167
    <dependency>
168
      <groupId>readonly.apache</groupId>
169
      <artifactId>commons-validator</artifactId>
170
      <version>1.3.1</version>
171
    </dependency>
172
    <dependency>
173
      <groupId>readonly.apache</groupId>
174
      <artifactId>ezmorph</artifactId>
175
      <version>1.0.3</version>
176
    </dependency>
177
    <dependency>
178
      <groupId>readonly.apache</groupId>
179
      <artifactId>json-lib</artifactId>
180
      <version>2.1-jdk15</version>
181
    </dependency>
182
    <dependency>
183
      <groupId>readonly.apache</groupId>
184
      <artifactId>jsp-api</artifactId>
185
      <version>2.1</version>
186
    </dependency>
187
    <dependency>
188
      <groupId>readonly.apache</groupId>
1046 chandransh 189
      <artifactId>log4j</artifactId>
190
      <version>1.2.16</version>
191
    </dependency>
192
    <dependency>
193
      <groupId>readonly.apache</groupId>
1040 chandransh 194
      <artifactId>ognl</artifactId>
195
      <version>2.7.3</version>
196
    </dependency>
1046 chandransh 197
    <dependency>
198
      <groupId>readonly.apache.struts</groupId>
199
      <artifactId>struts2-convention-plugin</artifactId>
200
      <version>2.1.8.1</version>
201
    </dependency>
202
    <dependency>
203
      <groupId>readonly.apache.struts</groupId>
204
      <artifactId>struts2-core</artifactId>
205
      <version>2.1.8.1</version>
206
    </dependency>
207
    <dependency>
208
      <groupId>readonly.apache.struts</groupId>
209
      <artifactId>struts2-rest-plugin</artifactId>
210
      <version>2.1.8.1</version>
211
    </dependency>
212
    <dependency>
213
      <groupId>readonly.apache.struts</groupId>
214
      <artifactId>xstream</artifactId>
215
      <version>1.2.2</version>
216
    </dependency>
217
    <dependency>
218
      <groupId>readonly.apache.struts</groupId>
219
      <artifactId>xwork-core</artifactId>
220
      <version>2.1.6</version>
221
    </dependency>
222
    <dependency>
1040 chandransh 223
      <groupId>readonly.apache</groupId>
1046 chandransh 224
      <artifactId>thrift</artifactId>
225
      <version>0.2.0</version>
226
    </dependency>
1040 chandransh 227
    <dependency>
228
      <groupId>readonly.apache</groupId>
229
      <artifactId>velocity</artifactId>
230
      <version>1.6.3</version>
231
    </dependency>
232
    <dependency>
233
      <groupId>readonly.apache</groupId>
234
      <artifactId>velocity-tools</artifactId>
235
      <version>1.4</version>
236
    </dependency>
237
    <dependency>
238
      <groupId>readonly.apache</groupId>
239
      <artifactId>xpp3_min</artifactId>
240
      <version>1.1.3.4.O</version>
241
    </dependency>
242
    <dependency>
243
      <groupId>readonly</groupId>
244
      <artifactId>freemarker</artifactId>
245
      <version>2.3.15</version>
246
    </dependency>
247
    <dependency>
248
      <groupId>readonly.slf4j</groupId>
249
      <artifactId>slf4j-api</artifactId>
250
      <version>1.5.8</version>
251
    </dependency>
252
    <dependency>
253
      <groupId>readonly.slf4j</groupId>
254
      <artifactId>slf4j-simple</artifactId>
255
      <version>1.5.8</version>
256
    </dependency>
1046 chandransh 257
    <dependency>
258
      <groupId>readonly</groupId>
259
      <artifactId>hdfc-payment</artifactId>
260
      <version>1.0</version>
261
    </dependency>
262
    <dependency>
263
      <groupId>readonly</groupId>
264
      <artifactId>yuicompressor</artifactId>
265
      <version>2.4.2</version>
266
    </dependency>
1040 chandransh 267
  </dependencies>
268
</project>