1 <?xml version="1.0" encoding="UTF-8"?>
4 * This is a common dao with basic CRUD operations and is not limited to any
5 * persistent layer implementation
7 * Copyright (C) 2008 Imran M Yousuf (imyousuf@smartitengineering.com)
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
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>
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.
41 <url>http://code.google.com/p/smart-dao</url>
43 <name>Smart IT Engineering</name>
44 <url>http://www.smartitengineering.com</url>
47 <system>Google Code Issue Tracker</system>
48 <url>http://code.google.com/p/smart-dao/issues/</url>
52 <name>User List</name>
53 <archive>http://groups.google.com/group/smart-dao-users</archive>
54 <post>smart-dao-users@googlegroups.com</post>
57 <name>Developer List</name>
58 <archive>http://groups.google.com/group/smart-dao-dev</archive>
59 <post>smart-dao-dev@googlegroups.com</post>
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>
72 <name>Imran M Yousuf</name>
73 <email>imyousuf@smartitengineering.com</email>
74 <organization>Smart IT Engineering</organization>
75 <timezone>GMT +0600</timezone>
77 <role>Project Owner</role>
78 <role>Developer</role>
79 <role>Maintainer</role>
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>
87 <distributionManagement>
88 <!-- use the following if you're not using a snapshot version. -->
90 <id>java.net-m2-repository</id>
91 <url>java-net:/maven2-repository/trunk/www/repository/</url>
93 <!-- use the following if you ARE using a snapshot version. -->
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>
99 </distributionManagement>
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>
108 <id>compass-project.org</id>
110 <url>http://repo.compass-project.org</url>
115 <groupId>junit</groupId>
116 <artifactId>junit</artifactId>
117 <version>3.8.1</version>
124 <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-release-plugin</artifactId>
126 <version>2.0-beta-8</version>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-scm-plugin</artifactId>
131 <version>1.1</version>
136 <groupId>org.jvnet.wagon-svn</groupId>
137 <artifactId>wagon-svn</artifactId>
138 <version>1.8</version>
141 <groupId>org.apache.maven.wagon</groupId>
142 <artifactId>wagon-ftp</artifactId>
143 <version>1.0-alpha-6</version>
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>
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>