Close the streams when writing serializable id to object stream
[smart-dao.git] / smart-hbase-dao / pom.xml
blobbc12b30cc166043393496d3bf13a3835afc424c2
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  *
4  * This is a common dao with basic CRUD operations and is not limited to any
5  * persistent layer implementation
6  *
7  * Copyright (C) 2008  Imran M Yousuf (imyousuf@smartitengineering.com)
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 3 of the License, or (at your option) any later version.
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20  *
21  *
22 -->
23 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
24     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
25   <modelVersion>4.0.0</modelVersion>
26   <parent>
27     <artifactId>smart-dao</artifactId>
28     <groupId>com.smartitengineering</groupId>
29     <version>0.4-SNAPSHOT</version>
30   </parent>
31   <groupId>com.smartitengineering.smart-dao</groupId>
32   <artifactId>smart-hbase-dao</artifactId>
33   <version>0.4-SNAPSHOT</version>
34   <name>Smart HBase DAO</name>
35   <description>HBase implementation of Smart DAO.</description>
36   <dependencies>
37     <dependency>
38       <groupId>org.apache.hbase</groupId>
39       <artifactId>hbase</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.apache.hadoop</groupId>
43       <artifactId>hadoop-test</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>junit</groupId>
47       <artifactId>junit</artifactId>
48       <version>4.8.1</version>
49     </dependency>
50     <dependency>
51       <groupId>com.smartitengineering</groupId>
52       <artifactId>smart-dao-queryparam</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>com.smartitengineering</groupId>
56       <artifactId>smart-abstract-dao</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>commons-io</groupId>
60       <artifactId>commons-io</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.apache.hbase</groupId>
64       <artifactId>hbase</artifactId>
65       <classifier>tests</classifier>
66     </dependency>
67   </dependencies>
68   <build>
69     <plugins>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-assembly-plugin</artifactId>
73       </plugin>
74       <plugin>
75         <groupId>org.apache.maven.plugins</groupId>
76         <artifactId>maven-compiler-plugin</artifactId>
77       </plugin>
78     </plugins>
79   </build>
80 </project>