Subversion Repositories SmartDukaan

Rev

Rev 4424 | Rev 4465 | 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>
59
 
60
    <dependency>
61
      <groupId>readonly.apache</groupId>
62
      <artifactId>commons-collections</artifactId>
63
      <version>3.2.1</version>
64
    </dependency>
65
    <dependency>
66
      <groupId>readonly.apache</groupId>
67
      <artifactId>commons-io</artifactId>
68
      <version>1.3.2</version>
69
    </dependency>
70
    <dependency>
71
      <groupId>readonly.apache</groupId>
72
      <artifactId>commons-lang</artifactId>
73
      <version>2.4</version>
74
    </dependency>
75
    <dependency>
76
      <groupId>readonly.apache</groupId>
77
      <artifactId>commons-logging</artifactId>
78
      <version>1.0.4</version>
79
    </dependency>
80
    <dependency>
81
      <groupId>readonly.apache</groupId>
82
      <artifactId>commons-logging-api</artifactId>
83
      <version>1.1</version>
84
    </dependency>
85
    <dependency>
86
      <groupId>readonly.apache</groupId>
87
      <artifactId>commons-validator</artifactId>
88
      <version>1.3.1</version>
89
    </dependency>
90
    <dependency>
91
      <groupId>readonly.apache</groupId>
92
      <artifactId>poi-3.6</artifactId>
93
      <version>20091214</version>
94
    </dependency>
95
    <dependency>
96
      <groupId>readonly.apache</groupId>
97
      <artifactId>poi-scratchpad-3.6</artifactId>
98
      <version>20091214</version>
99
    </dependency>
100
    <dependency>
101
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
102
      <artifactId>serializer</artifactId>
103
      <version>j_2_7_1</version>
104
    </dependency>
105
    <dependency>
106
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
107
      <artifactId>xalan</artifactId>
108
      <version>j_2_7_1</version>
109
    </dependency>
110
    <dependency>
111
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
112
      <artifactId>xercesImpl</artifactId>
113
      <version>j_2_7_1</version>
114
    </dependency>
115
    <dependency>
116
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
117
      <artifactId>xml-apis</artifactId>
118
      <version>j_2_7_1</version>
119
    </dependency>
120
    <dependency>
121
      <groupId>readonly.apache.xalan-j_2_7_1</groupId>
122
      <artifactId>xsltc</artifactId>
123
      <version>j_2_7_1</version>
124
    </dependency>
125
    <dependency>
126
      <groupId>readonly.apache</groupId>
127
      <artifactId>velocity</artifactId>
128
      <version>1.6.3</version>
129
    </dependency>
130
    <dependency>
131
      <groupId>readonly</groupId>
132
      <artifactId>jython</artifactId>
133
      <version>2.5.1</version>
134
    </dependency>
135
    <dependency>
136
      <groupId>readonly.bdb</groupId>
137
      <artifactId>je</artifactId>
138
      <version>4.1.7</version>
139
    </dependency>
140
 
141
    <dependency>
3435 rajveer 142
  		<groupId>org.apache.thrift</groupId>
143
  		<artifactId>libthrift</artifactId>
144
  		<version>0.7.0</version>
145
        <exclusions>
146
        <exclusion>
147
		    <groupId>commons-codec</groupId>
148
  			<artifactId>commons-codec</artifactId>
149
        </exclusion>
150
        </exclusions>
151
	</dependency>
2173 rajveer 152
    <dependency>
153
    	<groupId>commons-cli</groupId>
154
    	<artifactId>commons-cli</artifactId>
155
    	<version>1.2</version>
156
    </dependency>
2305 vikas 157
    <dependency>
158
        <groupId>org.json</groupId>
159
        <artifactId>json</artifactId>
160
        <version>20090211</version>
161
    </dependency>
2367 rajveer 162
    <dependency>
2838 mandeep.dh 163
        <groupId>com.google.code.gson</groupId>
164
        <artifactId>gson</artifactId>
3082 mandeep.dh 165
        <version>1.7.1</version>
2838 mandeep.dh 166
    </dependency>
167
    <dependency>
2367 rajveer 168
    	<groupId>org.apache.velocity</groupId>
169
    	<artifactId>velocity-tools</artifactId>
170
    	<version>2.0</version>
171
    </dependency>
3465 rajveer 172
    <dependency>
173
	  <groupId>javax.mail</groupId>
174
	  <artifactId>mail</artifactId>
175
	  <version>1.4</version>
176
	</dependency>
177
 
178
 
1064 chandransh 179
  </dependencies>
180
</project>