Add priority support to ResourceDomain annotation
[smart-dao.git] / smart-version / pom.xml
blob02b96b3da66eb90e3b0d4e88e6f8b8908bb41b90
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-version</artifactId>
32     <name>smart-version</name>
33     <packaging>pom</packaging>
34     <version>0.4-SNAPSHOT</version>
35     <description>
36         An API for object versioning. It will provide an low and high level API
37         for versining objects. It will also provide revision search as well. As
38         default implementation a JGit based implementation is provided.
39     </description>
40     <dependencies>
41         <dependency>
42             <groupId>junit</groupId>
43             <artifactId>junit</artifactId>
44             <version>${junit.version}</version>
45             <scope>test</scope>
46         </dependency>
47     </dependencies>
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-assembly-plugin</artifactId>
53                 <version>${assembly.version}</version>
54             </plugin>
55         </plugins>
56     </build>
57     <modules>
58         <module>smart-version-api</module>
59         <module>smart-version-jgit-impl</module>
60         <module>smart-dao-version</module>
61     </modules>
62 </project>