Subversion Repositories SmartDukaan

Rev

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