Subversion Repositories SmartDukaan

Rev

Rev 1046 | Rev 1287 | 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>
23
        <configuration>
24
          <debug>true</debug>
25
          <optimize>true</optimize>
26
          <source>1.6</source>
27
          <target>1.6</target>
28
        </configuration>
29
      </plugin>
1048 chandransh 30
      <plugin>
31
        <groupId>net.alchim31.maven</groupId>
32
        <artifactId>yuicompressor-maven-plugin</artifactId>
33
        <executions>
34
          <execution>
35
            <goals>
36
              <goal>jslint</goal>
37
              <!-- <goal>compress</goal> -->
38
            </goals>
39
          </execution>
40
        </executions>
41
        <configuration>
42
          <sourcedirectory>src/main/webapp/js</sourcedirectory>
43
          <excludes>
44
            <exclude>**/*jquery*</exclude>
45
            <exclude>**/*jQuery*</exclude>
46
            <exclude>**/all.js</exclude>
47
            <exclude>**/loopedslider.js</exclude>
48
            <exclude>**/jsapi.js</exclude>
49
          </excludes>
50
        </configuration>
51
      </plugin> 
1040 chandransh 52
    </plugins>
53
  </build>
54
 
55
  <dependencies>
1046 chandransh 56
	<!-- Servlet API is only required at compile time. It
57
	 should be provided by the container at the run time. -->
1040 chandransh 58
    <dependency>
59
      <groupId>readonly.apache</groupId>
60
      <artifactId>servlet-api</artifactId>
61
      <version>2.5</version>
62
      <scope>provided</scope>
63
    </dependency>
1046 chandransh 64
 
65
	<!-- Internal Dependencies -->
1040 chandransh 66
    <dependency>
67
      <groupId>in.shop2020</groupId>
68
      <artifactId>ThriftConfig</artifactId>
69
      <version>1.0-SNAPSHOT</version>
70
    </dependency>
71
    <dependency>
72
      <groupId>in.shop2020</groupId>
73
      <artifactId>Common</artifactId>
74
      <version>1.0-SNAPSHOT</version>
75
    </dependency>
1046 chandransh 76
 
77
	<!-- All the other dependencies. -->
78
	<dependency>
79
      <groupId>readonly.apache</groupId>
80
      <artifactId>commons-codec</artifactId>
81
      <version>1.4</version>
82
    </dependency>
1040 chandransh 83
    <dependency>
84
      <groupId>readonly.apache</groupId>
85
      <artifactId>commons-collections</artifactId>
86
      <version>3.2.1</version>
87
    </dependency>
88
    <dependency>
89
      <groupId>readonly.apache</groupId>
90
      <artifactId>commons-digester</artifactId>
91
      <version>2.0</version>
92
    </dependency>
93
    <dependency>
94
      <groupId>readonly.apache</groupId>
95
      <artifactId>commons-fileupload</artifactId>
96
      <version>1.2.1</version>
97
    </dependency>
98
    <dependency>
99
      <groupId>readonly.apache</groupId>
100
      <artifactId>commons-io</artifactId>
101
      <version>1.3.2</version>
102
    </dependency>
103
    <dependency>
104
      <groupId>readonly.apache</groupId>
105
      <artifactId>commons-lang</artifactId>
106
      <version>2.4</version>
107
    </dependency>
108
    <dependency>
109
      <groupId>readonly.apache</groupId>
110
      <artifactId>commons-logging</artifactId>
111
      <version>1.0.4</version>
112
    </dependency>
113
    <dependency>
114
      <groupId>readonly.apache</groupId>
115
      <artifactId>commons-logging-api</artifactId>
116
      <version>1.1</version>
117
    </dependency>
118
    <dependency>
119
      <groupId>readonly.apache</groupId>
120
      <artifactId>commons-validator</artifactId>
121
      <version>1.3.1</version>
122
    </dependency>
123
    <dependency>
124
      <groupId>readonly.apache</groupId>
125
      <artifactId>ezmorph</artifactId>
126
      <version>1.0.3</version>
127
    </dependency>
128
    <dependency>
129
      <groupId>readonly.apache</groupId>
130
      <artifactId>json-lib</artifactId>
131
      <version>2.1-jdk15</version>
132
    </dependency>
133
    <dependency>
134
      <groupId>readonly.apache</groupId>
135
      <artifactId>jsp-api</artifactId>
136
      <version>2.1</version>
137
    </dependency>
138
    <dependency>
139
      <groupId>readonly.apache</groupId>
1046 chandransh 140
      <artifactId>log4j</artifactId>
141
      <version>1.2.16</version>
142
    </dependency>
143
    <dependency>
144
      <groupId>readonly.apache</groupId>
1040 chandransh 145
      <artifactId>ognl</artifactId>
146
      <version>2.7.3</version>
147
    </dependency>
1046 chandransh 148
    <dependency>
149
      <groupId>readonly.apache.struts</groupId>
150
      <artifactId>struts2-convention-plugin</artifactId>
151
      <version>2.1.8.1</version>
152
    </dependency>
153
    <dependency>
154
      <groupId>readonly.apache.struts</groupId>
155
      <artifactId>struts2-core</artifactId>
156
      <version>2.1.8.1</version>
157
    </dependency>
158
    <dependency>
159
      <groupId>readonly.apache.struts</groupId>
160
      <artifactId>struts2-rest-plugin</artifactId>
161
      <version>2.1.8.1</version>
162
    </dependency>
163
    <dependency>
164
      <groupId>readonly.apache.struts</groupId>
165
      <artifactId>xstream</artifactId>
166
      <version>1.2.2</version>
167
    </dependency>
168
    <dependency>
169
      <groupId>readonly.apache.struts</groupId>
170
      <artifactId>xwork-core</artifactId>
171
      <version>2.1.6</version>
172
    </dependency>
173
    <dependency>
1040 chandransh 174
      <groupId>readonly.apache</groupId>
1046 chandransh 175
      <artifactId>thrift</artifactId>
176
      <version>0.2.0</version>
177
    </dependency>
1040 chandransh 178
    <dependency>
179
      <groupId>readonly.apache</groupId>
180
      <artifactId>velocity</artifactId>
181
      <version>1.6.3</version>
182
    </dependency>
183
    <dependency>
184
      <groupId>readonly.apache</groupId>
185
      <artifactId>velocity-tools</artifactId>
186
      <version>1.4</version>
187
    </dependency>
188
    <dependency>
189
      <groupId>readonly.apache</groupId>
190
      <artifactId>xpp3_min</artifactId>
191
      <version>1.1.3.4.O</version>
192
    </dependency>
193
    <dependency>
194
      <groupId>readonly</groupId>
195
      <artifactId>freemarker</artifactId>
196
      <version>2.3.15</version>
197
    </dependency>
198
    <dependency>
199
      <groupId>readonly.slf4j</groupId>
200
      <artifactId>slf4j-api</artifactId>
201
      <version>1.5.8</version>
202
    </dependency>
203
    <dependency>
204
      <groupId>readonly.slf4j</groupId>
205
      <artifactId>slf4j-simple</artifactId>
206
      <version>1.5.8</version>
207
    </dependency>
1046 chandransh 208
    <dependency>
209
      <groupId>readonly</groupId>
210
      <artifactId>hdfc-payment</artifactId>
211
      <version>1.0</version>
212
    </dependency>
213
    <dependency>
214
      <groupId>readonly</groupId>
215
      <artifactId>yuicompressor</artifactId>
216
      <version>2.4.2</version>
217
    </dependency>
1040 chandransh 218
  </dependencies>
219
</project>