Subversion Repositories SmartDukaan

Rev

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