Add rudimentary API & implementation of parsing domain config
[smart-dao.git] / smart-dao-search / pom.xml
bloba790d53a3748983f0599853e112e9bdcb1122658
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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26     <parent>
27         <groupId>com.smartitengineering</groupId>
28         <artifactId>smart-dao</artifactId>
29         <version>0.4-SNAPSHOT</version>
30     </parent>
31     <groupId>com.smartitengineering</groupId>
32     <artifactId>smart-dao-search</artifactId>
33     <version>0.4-SNAPSHOT</version>
34     <name>smart-dao-search</name>
35     <packaging>jar</packaging>
36     <description>
37         This API provides a generic API for interfacing with full-text search
38         engines. As a default implementation Compass Framework is used.
39     </description>
40     <build>
41         <plugins>
42             <plugin>
43                 <groupId>org.apache.maven.plugins</groupId>
44                 <artifactId>maven-assembly-plugin</artifactId>
45                 <version>${assembly.version}</version>
46             </plugin>
47         </plugins>
48     </build>
49     <dependencies>
50         <dependency>
51             <groupId>junit</groupId>
52             <artifactId>junit</artifactId>
53             <version>${junit.version}</version>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>com.smartitengineering</groupId>
58             <artifactId>smart-domain</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>com.smartitengineering</groupId>
63             <artifactId>smart-dao-queryparam</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>com.smartitengineering</groupId>
68             <artifactId>smart-abstract-dao</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.compass-project</groupId>
73             <artifactId>compass</artifactId>
74             <version>${compass.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>commons-lang</groupId>
78             <artifactId>commons-lang</artifactId>
79             <version>${commons-lang.version}</version>
80         </dependency>
81     </dependencies>
82 </project>