Subversion Repositories SmartDukaan

Rev

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