Subversion Repositories SmartDukaan

Rev

Rev 8213 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1064 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>ContentStore</artifactId>
6
  <packaging>jar</packaging>
7
  <version>1.0-SNAPSHOT</version>
8
 
9
  <name>Content Store</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>
3083 vikas 17
 
18
  <properties>
19
    <env>dev</env>
20
  </properties>
21
 
1064 chandransh 22
  <build>
3083 vikas 23
    <filters>
24
      <filter>src/main/filters/${env}/filters.properties</filter>
25
    </filters>
26
    <resources>
27
      <resource>
28
        <directory>src/main/resources</directory>
29
        <filtering>true</filtering>
30
      </resource>
31
    </resources>
1064 chandransh 32
    <plugins>
33
      <plugin>
34
        <groupId>org.apache.maven.plugins</groupId>
35
        <artifactId>maven-compiler-plugin</artifactId>
1282 chandransh 36
        <version>2.3.2</version>
1064 chandransh 37
        <configuration>
38
          <debug>true</debug>
39
          <optimize>true</optimize>
40
          <source>1.6</source>
41
          <target>1.6</target>
42
        </configuration>
43
      </plugin>
44
    </plugins>
45
  </build>
46
 
47
  <dependencies>
48
  	<!-- Internal Dependencies -->
49
    <dependency>
50
      <groupId>in.shop2020</groupId>
51
      <artifactId>ThriftConfig</artifactId>
52
      <version>1.0-SNAPSHOT</version>
53
    </dependency>
54
    <dependency>
55
      <groupId>in.shop2020</groupId>
56
      <artifactId>Common</artifactId>
57
      <version>1.0-SNAPSHOT</version>
58
    </dependency>
8213 amit.gupta 59
 
60
 
61
	<dependency>
62
		<groupId>org.mongodb</groupId>
63
		<artifactId>mongo-java-driver</artifactId>
64
		<version>2.10.1</version>
65
	</dependency>
66
 
1064 chandransh 67
    <dependency>
68
      <groupId>readonly.apache</groupId>
69
      <artifactId>commons-collections</artifactId>
70
      <version>3.2.1</version>
71
    </dependency>
72
    <dependency>
73
      <groupId>readonly.apache</groupId>
74
      <artifactId>commons-io</artifactId>
75
      <version>1.3.2</version>
76
    </dependency>
77
    <dependency>
78
      <groupId>readonly.apache</groupId>
79
      <artifactId>commons-lang</artifactId>
80
      <version>2.4</version>
81
    </dependency>
82
    <dependency>
83
      <groupId>readonly.apache</groupId>
84
      <artifactId>commons-logging</artifactId>
85
      <version>1.0.4</version>
86
    </dependency>
87
    <dependency>
88
      <groupId>readonly.apache</groupId>
89
      <artifactId>commons-logging-api</artifactId>
90
      <version>1.1</version>
91
    </dependency>
92
    <dependency>
93
      <groupId>readonly.apache</groupId>
94
      <artifactId>commons-validator</artifactId>
95
      <version>1.3.1</version>
96
    </dependency>
97
    <dependency>
98
      <groupId>readonly.apache</groupId>
99
      <artifactId>poi-3.6</artifactId>
100
      <version>20091214</version>
101
    </dependency>
102
    <dependency>
103
      <groupId>readonly.apache</groupId>
104
      <artifactId>poi-scratchpad-3.6</artifactId>
105
      <version>20091214</version>
106
    </dependency>
107
    <dependency>
108
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
109
      <artifactId>serializer</artifactId>
110
      <version>j_2_7_1</version>
111
    </dependency>
112
    <dependency>
113
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
114
      <artifactId>xalan</artifactId>
115
      <version>j_2_7_1</version>
116
    </dependency>
117
    <dependency>
118
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
119
      <artifactId>xercesImpl</artifactId>
120
      <version>j_2_7_1</version>
121
    </dependency>
122
    <dependency>
123
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
124
      <artifactId>xml-apis</artifactId>
125
      <version>j_2_7_1</version>
126
    </dependency>
127
    <dependency>
128
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
129
      <artifactId>xsltc</artifactId>
130
      <version>j_2_7_1</version>
131
    </dependency>
132
    <dependency>
133
      <groupId>readonly.apache</groupId>
134
      <artifactId>velocity</artifactId>
135
      <version>1.6.3</version>
136
    </dependency>
137
    <dependency>
138
      <groupId>readonly</groupId>
139
      <artifactId>jython</artifactId>
140
      <version>2.5.1</version>
141
    </dependency>
142
    <dependency>
143
      <groupId>readonly.bdb</groupId>
144
      <artifactId>je</artifactId>
145
      <version>4.1.7</version>
146
    </dependency>
147
 
148
    <dependency>
3435 rajveer 149
  		<groupId>org.apache.thrift</groupId>
150
  		<artifactId>libthrift</artifactId>
151
  		<version>0.7.0</version>
152
        <exclusions>
153
        <exclusion>
154
		    <groupId>commons-codec</groupId>
155
  			<artifactId>commons-codec</artifactId>
156
        </exclusion>
157
        </exclusions>
158
	</dependency>
2173 rajveer 159
    <dependency>
160
    	<groupId>commons-cli</groupId>
161
    	<artifactId>commons-cli</artifactId>
162
    	<version>1.2</version>
163
    </dependency>
2305 vikas 164
    <dependency>
165
        <groupId>org.json</groupId>
166
        <artifactId>json</artifactId>
167
        <version>20090211</version>
168
    </dependency>
2367 rajveer 169
    <dependency>
8749 amit.gupta 170
		<groupId>com.google.code.gson</groupId>
171
		<artifactId>gson</artifactId>
172
		<version>2.2.4</version>
173
	</dependency>
2838 mandeep.dh 174
    <dependency>
2367 rajveer 175
    	<groupId>org.apache.velocity</groupId>
176
    	<artifactId>velocity-tools</artifactId>
177
    	<version>2.0</version>
178
    </dependency>
3465 rajveer 179
    <dependency>
180
	  <groupId>javax.mail</groupId>
181
	  <artifactId>mail</artifactId>
182
	  <version>1.4</version>
183
	</dependency>
4465 amit.gupta 184
    <dependency>
185
		<groupId>commons-net</groupId>
186
		<artifactId>commons-net</artifactId>
187
		<version>3.0.1</version>
188
	</dependency>
4474 amit.gupta 189
    <dependency>
190
      <groupId>readonly.apache</groupId>
191
      <artifactId>poi</artifactId>
192
      <version>3.7-20101029</version>
193
    </dependency>
8213 amit.gupta 194
    	<dependency>
195
    		<groupId>commons-vfs</groupId>
196
    		<artifactId>commons-vfs</artifactId>
197
    		<version>1.0</version>
198
		</dependency> 
199
	<dependency>
200
    		<groupId>com.jcraft</groupId>
201
    		<artifactId>jsch</artifactId>
202
    		<version>0.1.31</version>
203
	</dependency>
4465 amit.gupta 204
 
3465 rajveer 205
 
1064 chandransh 206
  </dependencies>
207
</project>