Add the jgit imlementation part of version api's jgit impl
[smart-dao.git] / pom.xml
blobbe67a61278e2139e16b09a0cd04dcab1f039fdc3
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     <groupId>com.smartitengineering</groupId>
27     <artifactId>smart-dao</artifactId>
28     <packaging>pom</packaging>
29     <version>0.4-SNAPSHOT</version>
30     <name>smart-dao</name>
31     <inceptionYear>2007</inceptionYear>
32     <description>
33         This project basically aims to create an abstraction layer above common
34         ORM used this days and provide a simplified DAO layer which is not only
35         independent of the ORM tool being used but also integrated with other
36         services, for example App Layer Caching, Free Text Search Engine etc.
37         Initial target is to implement it for Hibernate and when JPA provides
38         Hibernate's Criteria like API implement for JPA as well. Integrate
39         App Layer Cache and Compass Framework.
40     </description>
41     <url>http://code.google.com/p/smart-dao</url>
42     <organization>
43         <name>Smart IT Engineering</name>
44         <url>http://www.smartitengineering.com</url>
45     </organization>
46     <issueManagement>
47         <system>Google Code Issue Tracker</system>
48         <url>http://code.google.com/p/smart-dao/issues/</url>
49     </issueManagement>
50     <mailingLists>
51         <mailingList>
52             <name>User List</name>
53             <archive>http://groups.google.com/group/smart-dao-users</archive>
54             <post>smart-dao-users@googlegroups.com</post>
55         </mailingList>
56         <mailingList>
57             <name>Developer List</name>
58             <archive>http://groups.google.com/group/smart-dao-dev</archive>
59             <post>smart-dao-dev@googlegroups.com</post>
60         </mailingList>
61     </mailingLists>
62     <licenses>
63         <license>
64             <name>LGPL v2.1</name>
65             <distribution>repo and manual</distribution>
66             <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
67         </license>
68     </licenses>
69     <developers>
70         <developer>
71             <id>imyousuf</id>
72             <name>Imran M Yousuf</name>
73             <email>imyousuf@smartitengineering.com</email>
74             <organization>Smart IT Engineering</organization>
75             <timezone>GMT +0600</timezone>
76             <roles>
77                 <role>Project Owner</role>
78                 <role>Developer</role>
79                 <role>Maintainer</role>
80             </roles>
81         </developer>
82     </developers>
83     <scm>
84         <connection>scm:git:git://repo.or.cz/smart-dao.git</connection>
85         <developerConnection>scm:git:ssh://imyousuf@repo.or.cz/srv/git/smart-dao.git</developerConnection>
86     </scm>
87     <distributionManagement>
88         <!-- use the following if you're not using a snapshot version. -->
89         <repository>
90             <id>java.net-m2-repository</id>
91             <url>java-net:/maven2-repository/trunk/www/repository/</url>
92         </repository>
93         <!-- use the following if you ARE using a snapshot version. -->
94         <snapshotRepository>
95             <id>free-ftp-snapshot-repo</id>
96             <name>My FTP snapshot</name>
97             <url>ftp://imyousuf.100webspace.net/imyousuf.100webspace.net/maven-repo/snapshot</url>
98         </snapshotRepository>
99     </distributionManagement>
100     <repositories>
101         <repository>
102             <id>maven2-repository.dev.java.net</id>
103             <name>Java.net Repository for Maven</name>
104             <url>http://download.java.net/maven/2/</url>
105             <layout>default</layout>
106         </repository>
107         <repository>
108             <id>compass-project.org</id>
109             <name>Compass</name>
110             <url>http://repo.compass-project.org</url>
111         </repository>
112     </repositories>
113     <dependencies>
114         <dependency>
115             <groupId>junit</groupId>
116             <artifactId>junit</artifactId>
117             <version>3.8.1</version>
118             <scope>test</scope>
119         </dependency>
120     </dependencies>
121     <build>
122         <plugins>
123             <plugin>
124                 <groupId>org.apache.maven.plugins</groupId>
125                 <artifactId>maven-release-plugin</artifactId>
126                 <version>2.0-beta-8</version>
127             </plugin>
128             <plugin>
129                 <groupId>org.apache.maven.plugins</groupId>
130                 <artifactId>maven-scm-plugin</artifactId>
131                 <version>1.1</version>
132             </plugin>
133         </plugins>
134         <extensions>
135             <extension>
136                 <groupId>org.jvnet.wagon-svn</groupId>
137                 <artifactId>wagon-svn</artifactId>
138                 <version>1.8</version>
139             </extension>
140             <extension>
141                 <groupId>org.apache.maven.wagon</groupId>
142                 <artifactId>wagon-ftp</artifactId>
143                 <version>1.0-alpha-6</version>
144             </extension>
145         </extensions>
146     </build>
147     <modules>
148         <module>smart-hibernate-abstract-dao</module>
149         <module>smart-abstract-dao</module>
150         <module>smart-domain</module>
151         <module>smart-cache</module>
152         <module>smart-dao-search</module>
153         <module>smart-version</module>
154         <module>smart-dao-queryparam</module>
155     </modules>
156     <properties>
157         <commons-lang.version>2.3</commons-lang.version>
158         <smart-util.version>0.1.1-SNAPSHOT</smart-util.version>
159         <jgit.version>0.4-SNAPSHOT</jgit.version>
160     </properties>
161 </project>