Subversion Repositories SmartDukaan

Rev

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