Subversion Repositories SmartDukaan

Rev

Rev 20400 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20399 amit.gupta 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>com.hotspotstore</groupId>
5
  <artifactId>HotspotStore</artifactId>
6
  <packaging>war</packaging>
7
  <version>1.0-SNAPSHOT</version>
8
 
9
  <name>Web UI for hotspotstore.com</name>
10
 
11
 
12
  <properties>
13
    <env>dev</env>
14
  </properties>
15
 
16
  <build>
17
    <filters>
18
      <filter>src/main/filters/${env}/filters.properties</filter>
19
    </filters>
20
    <resources>
21
      <resource>
22
        <directory>src/main/resources</directory>
23
        <filtering>true</filtering>
24
      </resource>
25
    </resources>
26
    <plugins>
27
      <plugin>
28
        <groupId>org.apache.maven.plugins</groupId>
29
        <artifactId>maven-compiler-plugin</artifactId>
30
        <version>2.3.2</version>
31
        <configuration>
32
          <debug>true</debug>
33
          <optimize>true</optimize>
34
          <source>1.6</source>
35
          <target>1.6</target>
36
        </configuration>
37
      </plugin>
38
    </plugins>
39
  </build>
40
 
41
  <profiles>
42
    <profile>
43
      <activation>
44
        <property>
45
          <name>env</name>
46
          <value>dev</value>
47
        </property>
48
      </activation>
49
      <build>
50
        <plugins>
51
          <plugin>
52
	      	<groupId>org.apache.maven.plugins</groupId>
53
	        <artifactId>maven-war-plugin</artifactId>
54
	        <version>2.3</version>
55
		    <configuration>
56
	          <webResources>
57
                <resource>
58
	              <directory>src/main/webapp/js</directory>
59
	              <targetPath>js</targetPath>
60
	              <filtering>true</filtering>
61
	            </resource>
62
	            <resource>
63
	              <directory>src/main/webapp</directory>
64
	              <includes>
65
	                <include>WEB-INF/content/*.vm</include>
66
	                <include>WEB-INF/web.xml</include>
67
	                <include>js/ga-invoker.js</include>
68
	                <include>js/facebook.js</include>
69
	                <include>js/loginregister.js</include>
70
	              </includes>
71
	              <filtering>true</filtering>
72
	            </resource>
73
		      </webResources>
74
	        </configuration>
75
	      </plugin>
76
        </plugins>
77
      </build>
78
    </profile>
79
  </profiles>
80
 
81
  <dependencies>
82
	<!-- Servlet API is only required at compile time. It
83
	 should be provided by the container at the run time. -->
84
<dependency>
85
	<groupId>javax.servlet</groupId>
86
	<artifactId>javax.servlet-api</artifactId>
87
	<version>3.0.1</version>
88
</dependency>
89
 
90
<dependency>
91
	<groupId>commons-codec</groupId>
92
	<artifactId>commons-codec</artifactId>
93
	<version>1.10</version>
94
</dependency>
95
 
96
    <dependency>
97
      <groupId>readonly.apache</groupId>
98
      <artifactId>velocity</artifactId>
99
      <version>1.6.3</version>
100
    </dependency>
101
    <dependency>
102
      <groupId>readonly.apache</groupId>
103
      <artifactId>velocity-tools</artifactId>
104
      <version>1.4</version>
105
    </dependency>
106
    <dependency>
107
      <groupId>org.apache.struts</groupId>
108
      <artifactId>struts2-convention-plugin</artifactId>
109
      <version>2.3.24</version>
110
    </dependency>
111
<dependency>
112
	<groupId>org.apache.struts</groupId>
113
	<artifactId>struts2-core</artifactId>
114
	<version>2.3.24</version>
115
</dependency>
116
 
117
    <dependency>
118
      <groupId>org.apache.struts</groupId>
119
      <artifactId>struts2-rest-plugin</artifactId>
120
      <version>2.3.24</version>
121
    </dependency>
122
<dependency>
123
	<groupId>org.apache.struts.xwork</groupId>
124
	<artifactId>xwork-core</artifactId>
125
	<version>2.3.24</version>
126
</dependency>
127
 
128
    <dependency>
129
  		<groupId>org.apache.thrift</groupId>
130
  		<artifactId>libthrift</artifactId>
131
  		<version>0.9.2</version>
132
        <exclusions>
133
        <exclusion>
134
		    <groupId>commons-codec</groupId>
135
  			<artifactId>commons-codec</artifactId>
136
        </exclusion>
137
        </exclusions>
138
	</dependency>
139
    <dependency>
140
      <groupId>readonly</groupId>
141
      <artifactId>hdfc-payment</artifactId>
142
      <version>2.0</version>
143
    </dependency>
144
    <dependency>
145
      <groupId>readonly</groupId>
146
      <artifactId>yuicompressor</artifactId>
147
      <version>2.4.2</version>
148
    </dependency>
149
    <dependency>
150
        <groupId>org.json</groupId>
151
        <artifactId>json</artifactId>
152
        <version>20090211</version>
153
    </dependency>
154
    <dependency>
155
    	<groupId>com.google.code.gson</groupId>
156
    	<artifactId>gson</artifactId>
157
    	<version>1.7.1</version>
158
    </dependency>
159
    <dependency>
160
        <groupId>net.sf.ehcache</groupId>
161
        <artifactId>ehcache</artifactId>
162
        <version>2.4.4</version>
163
        <type>pom</type>
164
    </dependency>
165
    <dependency>
166
	    <groupId>net.tanesha.recaptcha4j</groupId>
167
	    <artifactId>recaptcha4j</artifactId>
168
	    <version>0.0.7</version>
169
	</dependency>
170
	<!-- Captcha Dependencies -->
171
	<dependency>
172
		<groupId>readonly.nl.captcha</groupId>
173
		<artifactId>SimpleCaptcha</artifactId>
174
		<version>1.2.1</version>
175
	</dependency>
176
        <dependency>
177
	<groupId>com.jcraft</groupId>
178
	<artifactId>jsch</artifactId>
179
	<version>0.1.48</version>
180
</dependency>
181
      <dependency>
182
	<groupId>ant</groupId>
183
	<artifactId>ant-jsch</artifactId>
184
	<version>1.6.5</version>
185
</dependency>
186
    <dependency>
187
	<groupId>org.apache.ant</groupId>
188
	<artifactId>ant</artifactId>
189
	<version>1.7.0</version>
190
</dependency>
191
    <dependency>
192
	<groupId>org.codehaus.groovy.maven.support</groupId>
193
	<artifactId>ant-launcher-1.7.0</artifactId>
194
	<version>1.0-rc-2</version>
195
</dependency>
196
    <dependency>
197
    	<groupId>TrackWebServiceClient</groupId>
198
    	<artifactId>TrackWebServiceClient</artifactId>
199
    	<version>1.0-SNAPSHOT</version>
200
    </dependency>
201
    <dependency>
202
    	<groupId>ShipDEWebServiceClient</groupId>
203
    	<artifactId>ShipDEWebServiceClient</artifactId>
204
    	<version>1.0-SNAPSHOT</version>
205
    </dependency>
206
  	<dependency>
207
		<groupId>nz.net.osnz.common</groupId>
208
		<artifactId>common-pherialize</artifactId>
209
		<version>1.1</version>
210
	</dependency>
211
  </dependencies>
212
 
213
</project>