Subversion Repositories SmartDukaan

Rev

Rev 20400 | Rev 20529 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20400 Rev 20424
Line 1... Line 1...
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
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>
3
	<modelVersion>4.0.0</modelVersion>
4
  <groupId>com.hotspotstore</groupId>
4
	<groupId>in.shop2020</groupId>
5
  <artifactId>HotspotStore</artifactId>
5
	<artifactId>Hotspot</artifactId>
6
  <packaging>war</packaging>
6
	<packaging>war</packaging>
7
  <version>1.0-SNAPSHOT</version>
7
	<version>1.0-SNAPSHOT</version>
8
 
8
 
-
 
9
	<name>HotspotStore</name>
9
  <name>Web UI for hotspotstore.com</name>
10
	<url>http://hotspotstore.com</url>
10
 
11
 
11
  
12
	<parent>
-
 
13
		<groupId>in.shop2020</groupId>
12
  <properties>
14
		<artifactId>parent</artifactId>
13
    <env>dev</env>
15
		<version>1.0-SNAPSHOT</version>
14
  </properties>
16
	</parent>
15
  
17
 
16
  <build>
18
	<build>
17
    <!-- 
-
 
18
    <filters>
-
 
19
      <filter>src/main/filters/${env}/filters.properties</filter>
-
 
20
    </filters>
-
 
21
     -->
-
 
22
    <resources>
-
 
23
      <resource>
-
 
24
        <directory>src/main/resources</directory>
-
 
25
        <filtering>true</filtering>
-
 
26
      </resource>
-
 
27
    </resources>
-
 
28
    <plugins>
19
		<plugins>
29
      <plugin>
20
			<plugin>
30
        <groupId>org.apache.maven.plugins</groupId>
21
				<groupId>org.apache.maven.plugins</groupId>
31
        <artifactId>maven-compiler-plugin</artifactId>
22
				<artifactId>maven-compiler-plugin</artifactId>
32
        <version>2.3.2</version>
23
				<version>2.3.2</version>
33
        <configuration>
24
				<configuration>
34
          <debug>true</debug>
25
					<debug>true</debug>
35
          <optimize>true</optimize>
26
					<optimize>true</optimize>
36
          <source>1.6</source>
27
					<source>1.6</source>
37
          <target>1.6</target>
28
					<target>1.6</target>
38
        </configuration>
29
				</configuration>
39
      </plugin>
30
			</plugin>
40
    </plugins>
31
		</plugins>
41
  </build>
32
	</build>
42
 
33
 
43
  <profiles>
34
	<dependencies>
44
    <profile>
35
		<dependency>
-
 
36
			<groupId>org.apache.thrift</groupId>
-
 
37
			<artifactId>libthrift</artifactId>
45
      <activation>
38
			<version>0.7.0</version>
46
        <property>
39
			<exclusions>
47
          <name>env</name>
40
				<exclusion>
48
          <value>dev</value>
41
					<groupId>commons-codec</groupId>
49
        </property>
42
					<artifactId>commons-codec</artifactId>
50
      </activation>
43
				</exclusion>
51
      <build>
44
			</exclusions>
52
        <plugins>
45
		</dependency>
53
          <plugin>
46
		<dependency>
54
	      	<groupId>org.apache.maven.plugins</groupId>
47
			<groupId>readonly.apache.struts</groupId>
55
	        <artifactId>maven-war-plugin</artifactId>
48
			<artifactId>struts2-convention-plugin</artifactId>
56
	        <version>2.3</version>
49
			<version>2.1.8.1</version>
57
		    <configuration>
50
		</dependency>
58
	          <webResources>
51
		<dependency>
59
                <resource>
-
 
60
	              <directory>src/main/webapp/js</directory>
52
			<groupId>readonly.apache.struts</groupId>
61
	              <targetPath>js</targetPath>
53
			<artifactId>struts2-core</artifactId>
62
	              <filtering>true</filtering>
-
 
63
	            </resource>
54
			<version>2.1.8.1</version>
64
	            <resource>
55
		</dependency>
65
	              <directory>src/main/webapp</directory>
-
 
66
	              <includes>
56
		<dependency>
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>
57
			<groupId>readonly.apache.struts</groupId>
71
	                <include>js/loginregister.js</include>
58
			<artifactId>struts2-rest-plugin</artifactId>
72
	              </includes>
59
			<version>2.1.8.1</version>
73
	              <filtering>true</filtering>
-
 
74
	            </resource>
60
		</dependency>
75
		      </webResources>
61
		<dependency>
76
	        </configuration>
62
			<groupId>readonly.apache.struts</groupId>
77
	      </plugin>
63
			<artifactId>xstream</artifactId>
78
        </plugins>
64
			<version>1.2.2</version>
79
      </build>
-
 
80
    </profile>
-
 
81
  </profiles>
65
		</dependency>
82
  
-
 
83
  <dependencies>
66
		<dependency>
84
	<!-- Servlet API is only required at compile time. It
67
			<groupId>readonly.apache.struts</groupId>
85
	 should be provided by the container at the run time. -->
68
			<artifactId>xwork-core</artifactId>
-
 
69
			<version>2.1.6</version>
86
<dependency>
70
		</dependency>
-
 
71
                <dependency>
87
	<groupId>javax.servlet</groupId>
72
  <groupId>com.eclipsesource.minimal-json</groupId>
88
	<artifactId>javax.servlet-api</artifactId>
73
  <artifactId>minimal-json</artifactId>
89
	<version>3.0.1</version>
74
  <version>0.9.4</version>
90
</dependency>
75
</dependency>
91
 
-
 
92
<dependency>
76
<dependency>
-
 
77
                        <groupId>org.apache.httpcomponents</groupId>
-
 
78
                        <artifactId>httpclient</artifactId>
-
 
79
                        <version>4.2.1</version>
-
 
80
                </dependency>
-
 
81
                <dependency>
-
 
82
      <groupId>in.shop2020</groupId>
-
 
83
      <artifactId>ThriftConfig</artifactId>
-
 
84
      <version>1.0-SNAPSHOT</version>
-
 
85
    </dependency>
-
 
86
		<dependency>
-
 
87
			<groupId>in.shop2020</groupId>
-
 
88
			<artifactId>Common</artifactId>
-
 
89
			<version>1.0-SNAPSHOT</version>
-
 
90
			<exclusions>
-
 
91
				<exclusion>
-
 
92
					<groupId>readonly.slf4j</groupId>
-
 
93
					<artifactId>slf4j-api</artifactId>
-
 
94
				</exclusion>
-
 
95
				<exclusion>
-
 
96
					<groupId>readonly.slf4j</groupId>
-
 
97
					<artifactId>slf4j-simple</artifactId>
-
 
98
				</exclusion>
-
 
99
			</exclusions>
-
 
100
		</dependency>
-
 
101
		<!-- Required in the final package but not at the compile time. So putting 
-
 
102
			them at the bottom of the dependency list. -->
-
 
103
		<dependency>
-
 
104
			<groupId>readonly.apache</groupId>
-
 
105
			<artifactId>commons-collections</artifactId>
-
 
106
			<version>3.2.1</version>
-
 
107
		</dependency>
-
 
108
		<dependency>
-
 
109
			<groupId>readonly.apache</groupId>
-
 
110
			<artifactId>commons-digester</artifactId>
-
 
111
			<version>2.0</version>
-
 
112
		</dependency>
-
 
113
		<dependency>
-
 
114
			<groupId>readonly.apache</groupId>
-
 
115
			<artifactId>commons-fileupload</artifactId>
-
 
116
			<version>1.2.1</version>
-
 
117
		</dependency>
-
 
118
		<dependency>
93
	<groupId>commons-codec</groupId>
119
			<groupId>readonly.apache</groupId>
94
	<artifactId>commons-codec</artifactId>
120
			<artifactId>commons-io</artifactId>
-
 
121
			<version>1.3.2</version>
-
 
122
		</dependency>
-
 
123
		<dependency>
-
 
124
			<groupId>readonly.apache</groupId>
-
 
125
			<artifactId>commons-lang</artifactId>
-
 
126
			<version>2.4</version>
-
 
127
		</dependency>
-
 
128
		<dependency>
-
 
129
			<groupId>readonly.apache</groupId>
-
 
130
			<artifactId>commons-logging</artifactId>
-
 
131
			<version>1.0.4</version>
-
 
132
		</dependency>
-
 
133
		<dependency>
-
 
134
			<groupId>readonly.apache</groupId>
-
 
135
			<artifactId>commons-logging-api</artifactId>
95
	<version>1.10</version>
136
			<version>1.1</version>
-
 
137
		</dependency>
-
 
138
		<dependency>
-
 
139
			<groupId>readonly.apache</groupId>
-
 
140
			<artifactId>commons-validator</artifactId>
-
 
141
			<version>1.3.1</version>
-
 
142
		</dependency>
-
 
143
		<dependency>
-
 
144
			<groupId>readonly.apache</groupId>
-
 
145
			<artifactId>ezmorph</artifactId>
-
 
146
			<version>1.0.3</version>
-
 
147
		</dependency>
-
 
148
		<dependency>
-
 
149
			<groupId>readonly.apache</groupId>
-
 
150
			<artifactId>json-lib</artifactId>
-
 
151
			<version>2.1-jdk15</version>
-
 
152
		</dependency>
-
 
153
		<dependency>
-
 
154
			<groupId>readonly.apache</groupId>
-
 
155
			<artifactId>jsp-api</artifactId>
-
 
156
			<version>2.1</version>
-
 
157
		</dependency>
-
 
158
		<dependency>
-
 
159
			<groupId>readonly.apache</groupId>
-
 
160
			<artifactId>ognl</artifactId>
-
 
161
			<version>2.7.3</version>
-
 
162
		</dependency>
-
 
163
		<dependency>
-
 
164
			<groupId>readonly.apache</groupId>
-
 
165
			<artifactId>velocity</artifactId>
-
 
166
			<version>1.6.3</version>
-
 
167
		</dependency>
-
 
168
		<dependency>
-
 
169
			<groupId>readonly.apache</groupId>
-
 
170
			<artifactId>velocity-tools</artifactId>
-
 
171
			<version>1.4</version>
-
 
172
		</dependency>
-
 
173
		<dependency>
-
 
174
			<groupId>readonly.apache</groupId>
-
 
175
			<artifactId>xpp3_min</artifactId>
-
 
176
			<version>1.1.3.4.O</version>
-
 
177
		</dependency>
-
 
178
		<dependency>
-
 
179
			<groupId>readonly</groupId>
-
 
180
			<artifactId>freemarker</artifactId>
-
 
181
			<version>2.3.15</version>
-
 
182
		</dependency>
-
 
183
		<dependency>
-
 
184
			<groupId>org.slf4j</groupId>
-
 
185
			<artifactId>slf4j-api</artifactId>
-
 
186
			<version>1.6.1</version>
-
 
187
		</dependency>
-
 
188
		<dependency>
-
 
189
			<groupId>org.slf4j</groupId>
-
 
190
			<artifactId>slf4j-log4j12</artifactId>
-
 
191
			<version>1.6.1</version>
-
 
192
		</dependency>
-
 
193
		<dependency>
-
 
194
			<groupId>readonly.apache</groupId>
-
 
195
			<artifactId>log4j</artifactId>
-
 
196
			<version>1.2.16</version>
-
 
197
		</dependency>
-
 
198
		<dependency>
-
 
199
			<groupId>org.json</groupId>
-
 
200
			<artifactId>json</artifactId>
-
 
201
			<version>20090211</version>
-
 
202
		</dependency>
-
 
203
		<dependency>
-
 
204
		<groupId>javax.inject</groupId>
-
 
205
  		<artifactId>javax.inject</artifactId>
-
 
206
  		<version>1</version>
-
 
207
		</dependency>
-
 
208
                <dependency>
-
 
209
                <groupId>org.mongodb</groupId>
-
 
210
                <artifactId>mongo-java-driver</artifactId>
-
 
211
                <version>2.12.2</version>
-
 
212
                </dependency>
-
 
213
                <dependency>
-
 
214
	<groupId>com.whalin</groupId>
-
 
215
	<artifactId>Memcached-Java-Client</artifactId>
-
 
216
	<version>3.0.0</version>
96
</dependency>
217
</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>
218
<dependency>
125
	<groupId>org.apache.struts.xwork</groupId>
219
	<groupId>org.apache.commons</groupId>
126
	<artifactId>xwork-core</artifactId>
220
	<artifactId>commons-pool2</artifactId>
127
	<version>2.3.24</version>
221
	<version>2.0</version>
128
</dependency>
222
</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>
223
	</dependencies>
214
  
-
 
215
</project>
224
</project>