Subversion Repositories SmartDukaan

Rev

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