| 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>
|
|
|
17 |
<build>
|
|
|
18 |
<plugins>
|
|
|
19 |
<plugin>
|
|
|
20 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
21 |
<artifactId>maven-compiler-plugin</artifactId>
|
| 1282 |
chandransh |
22 |
<version>2.3.2</version>
|
| 1064 |
chandransh |
23 |
<configuration>
|
|
|
24 |
<debug>true</debug>
|
|
|
25 |
<optimize>true</optimize>
|
|
|
26 |
<source>1.6</source>
|
|
|
27 |
<target>1.6</target>
|
|
|
28 |
</configuration>
|
|
|
29 |
</plugin>
|
|
|
30 |
</plugins>
|
|
|
31 |
</build>
|
|
|
32 |
|
|
|
33 |
<dependencies>
|
|
|
34 |
<!-- Internal Dependencies -->
|
|
|
35 |
<dependency>
|
|
|
36 |
<groupId>in.shop2020</groupId>
|
|
|
37 |
<artifactId>ThriftConfig</artifactId>
|
|
|
38 |
<version>1.0-SNAPSHOT</version>
|
|
|
39 |
</dependency>
|
|
|
40 |
<dependency>
|
|
|
41 |
<groupId>in.shop2020</groupId>
|
|
|
42 |
<artifactId>Common</artifactId>
|
|
|
43 |
<version>1.0-SNAPSHOT</version>
|
|
|
44 |
</dependency>
|
|
|
45 |
|
|
|
46 |
<dependency>
|
|
|
47 |
<groupId>readonly.apache</groupId>
|
|
|
48 |
<artifactId>commons-collections</artifactId>
|
|
|
49 |
<version>3.2.1</version>
|
|
|
50 |
</dependency>
|
|
|
51 |
<dependency>
|
|
|
52 |
<groupId>readonly.apache</groupId>
|
|
|
53 |
<artifactId>commons-io</artifactId>
|
|
|
54 |
<version>1.3.2</version>
|
|
|
55 |
</dependency>
|
|
|
56 |
<dependency>
|
|
|
57 |
<groupId>readonly.apache</groupId>
|
|
|
58 |
<artifactId>commons-lang</artifactId>
|
|
|
59 |
<version>2.4</version>
|
|
|
60 |
</dependency>
|
|
|
61 |
<dependency>
|
|
|
62 |
<groupId>readonly.apache</groupId>
|
|
|
63 |
<artifactId>commons-logging</artifactId>
|
|
|
64 |
<version>1.0.4</version>
|
|
|
65 |
</dependency>
|
|
|
66 |
<dependency>
|
|
|
67 |
<groupId>readonly.apache</groupId>
|
|
|
68 |
<artifactId>commons-logging-api</artifactId>
|
|
|
69 |
<version>1.1</version>
|
|
|
70 |
</dependency>
|
|
|
71 |
<dependency>
|
|
|
72 |
<groupId>readonly.apache</groupId>
|
|
|
73 |
<artifactId>commons-validator</artifactId>
|
|
|
74 |
<version>1.3.1</version>
|
|
|
75 |
</dependency>
|
|
|
76 |
<dependency>
|
|
|
77 |
<groupId>readonly.apache</groupId>
|
|
|
78 |
<artifactId>poi-3.6</artifactId>
|
|
|
79 |
<version>20091214</version>
|
|
|
80 |
</dependency>
|
|
|
81 |
<dependency>
|
|
|
82 |
<groupId>readonly.apache</groupId>
|
|
|
83 |
<artifactId>poi-scratchpad-3.6</artifactId>
|
|
|
84 |
<version>20091214</version>
|
|
|
85 |
</dependency>
|
|
|
86 |
<dependency>
|
|
|
87 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
88 |
<artifactId>serializer</artifactId>
|
|
|
89 |
<version>j_2_7_1</version>
|
|
|
90 |
</dependency>
|
|
|
91 |
<dependency>
|
|
|
92 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
93 |
<artifactId>xalan</artifactId>
|
|
|
94 |
<version>j_2_7_1</version>
|
|
|
95 |
</dependency>
|
|
|
96 |
<dependency>
|
|
|
97 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
98 |
<artifactId>xercesImpl</artifactId>
|
|
|
99 |
<version>j_2_7_1</version>
|
|
|
100 |
</dependency>
|
|
|
101 |
<dependency>
|
|
|
102 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
103 |
<artifactId>xml-apis</artifactId>
|
|
|
104 |
<version>j_2_7_1</version>
|
|
|
105 |
</dependency>
|
|
|
106 |
<dependency>
|
|
|
107 |
<groupId>readonly.apache.xalan-j_2_7_1</groupId>
|
|
|
108 |
<artifactId>xsltc</artifactId>
|
|
|
109 |
<version>j_2_7_1</version>
|
|
|
110 |
</dependency>
|
|
|
111 |
<dependency>
|
|
|
112 |
<groupId>readonly.apache</groupId>
|
|
|
113 |
<artifactId>velocity</artifactId>
|
|
|
114 |
<version>1.6.3</version>
|
|
|
115 |
</dependency>
|
|
|
116 |
<dependency>
|
|
|
117 |
<groupId>readonly</groupId>
|
|
|
118 |
<artifactId>jython</artifactId>
|
|
|
119 |
<version>2.5.1</version>
|
|
|
120 |
</dependency>
|
|
|
121 |
<dependency>
|
|
|
122 |
<groupId>readonly.bdb</groupId>
|
|
|
123 |
<artifactId>je</artifactId>
|
|
|
124 |
<version>4.1.7</version>
|
|
|
125 |
</dependency>
|
|
|
126 |
|
|
|
127 |
<dependency>
|
|
|
128 |
<groupId>readonly.apache</groupId>
|
|
|
129 |
<artifactId>thrift</artifactId>
|
|
|
130 |
<version>0.2.0</version>
|
|
|
131 |
</dependency>
|
|
|
132 |
</dependencies>
|
|
|
133 |
</project>
|