Extend a rudimentary dao implementation
[smart-dao.git] / smart-dao-queryparam / pom.xml
blob05ef68aac51c98c4f025da890af9804525b6cfb4
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>
24     <parent>
25         <artifactId>smart-dao</artifactId>
26         <groupId>com.smartitengineering</groupId>
27         <version>0.4-SNAPSHOT</version>
28     </parent>
29     <modelVersion>4.0.0</modelVersion>
30     <groupId>com.smartitengineering</groupId>
31     <artifactId>smart-dao-queryparam</artifactId>
32     <name>smart-dao-queryparam</name>
33     <version>0.4-SNAPSHOT</version>
34     <packaging>jar</packaging>
35     <description>
36         This module provides a generic API for querying different services. The
37         idea is to use this API for all sorts of queries in different APIs. It
38         will initially be used for DB read queries, Full-text Searches, Search
39         in versioning and JAX-RS GET requests; all these will be implemented
40         under Smart DAO project.
41     </description>
42     <build>
43         <plugins>
44             <plugin>
45                 <groupId>org.apache.maven.plugins</groupId>
46                 <artifactId>maven-assembly-plugin</artifactId>
47                 <version>${assembly.version}</version>
48             </plugin>
49         </plugins>
50     </build>
51     <dependencies>
52         <dependency>
53             <groupId>junit</groupId>
54             <artifactId>junit</artifactId>
55             <version>${junit.version}</version>
56             <scope>test</scope>
57         </dependency>
58     </dependencies>
59 </project>