Fix the behavior of Id of a domain
[smart-dao.git] / smart-exim / smart-exim-api / pom.xml
blob11c55e0b083fdcf013286715980dcec9e4ba74f7
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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
22     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23     <parent>
24         <artifactId>smart-exim</artifactId>
25         <groupId>com.smartitengineering</groupId>
26         <version>0.4-SNAPSHOT</version>
27     </parent>
28     <modelVersion>4.0.0</modelVersion>
29     <groupId>com.smartitengineering.smart-exim</groupId>
30     <artifactId>smart-exim-api</artifactId>
31     <name>smart-exim-api</name>
32     <version>0.4-SNAPSHOT</version>
33     <description>
34         This module lays the foundation API and partial implementation of the
35         API which is independent of any specific format of import and export.
36     </description>
37     <build>
38         <plugins>
39             <plugin>
40                 <groupId>org.apache.maven.plugins</groupId>
41                 <artifactId>maven-assembly-plugin</artifactId>
42                 <version>${assembly.version}</version>
43             </plugin>
44         </plugins>
45     </build>
46     <dependencies>
47         <dependency>
48             <groupId>junit</groupId>
49             <artifactId>junit</artifactId>
50             <version>${junit.version}</version>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>com.smartitengineering</groupId>
55             <artifactId>smart-domain</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>com.smartitengineering.smart-util</groupId>
60             <artifactId>simple-util</artifactId>
61             <version>${smart-util.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>dom4j</groupId>
65             <artifactId>dom4j</artifactId>
66             <version>${dom4j.version}</version>
67         </dependency>
68     </dependencies>
69 </project>