Subversion Repositories SmartDukaan

Rev

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