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 <artifactId>smart-dao</artifactId>
24 <groupId>com.smartitengineering</groupId>
25 <version>0.4-SNAPSHOT</version>
27 <modelVersion>4.0.0</modelVersion>
28 <groupId>com.smartitengineering.smart-dao</groupId>
29 <artifactId>docs</artifactId>
31 <version>0.4-SNAPSHOT</version>
32 <packaging>pom</packaging>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-assembly-plugin</artifactId>
43 <groupId>com.smartitengineering</groupId>
44 <artifactId>smart-domain</artifactId>
47 <groupId>com.smartitengineering</groupId>
48 <artifactId>smart-abstract-dao</artifactId>
51 <groupId>com.smartitengineering.smart-dao</groupId>
52 <artifactId>smart-hbase-dao</artifactId>
55 <groupId>com.smartitengineering</groupId>
56 <artifactId>smart-dao-queryparam</artifactId>
59 <groupId>com.smartitengineering</groupId>
60 <artifactId>smart-hibernate-abstract-dao</artifactId>
63 <groupId>com.smartitengineering</groupId>
64 <artifactId>smart-cache</artifactId>
67 <groupId>com.smartitengineering</groupId>
68 <artifactId>smart-rs</artifactId>
71 <groupId>com.smartitengineering</groupId>
72 <artifactId>smart-dao-search</artifactId>
75 <groupId>com.smartitengineering.smart-version</groupId>
76 <artifactId>smart-version-api</artifactId>
79 <groupId>com.smartitengineering.smart-version</groupId>
80 <artifactId>smart-dao-version</artifactId>
83 <groupId>com.smartitengineering.smart-version</groupId>
84 <artifactId>smart-version-jgit-impl</artifactId>
87 <groupId>com.smartitengineering.smart-exim</groupId>
88 <artifactId>smart-exim-api</artifactId>
91 <groupId>com.smartitengineering.smart-exim</groupId>
92 <artifactId>smart-exim-xml-impl</artifactId>
97 <id>assemble-simple-dist</id>
100 <name>build.complete</name>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-assembly-plugin</artifactId>
109 <inherited>false</inherited>
111 <!-- Assembly execution for aggregating site -->
113 <id>assemble-site</id>
114 <phase>package</phase>
120 <descriptor>src/main/assembly/assemble-site.xml</descriptor>
130 <id>assemble-with-dep</id>
133 <name>build.complete.dist</name>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-assembly-plugin</artifactId>
142 <inherited>true</inherited>
144 <!-- Assembly execution for building distribution -->
146 <id>assemble-dist</id>
147 <inherited>false</inherited>
148 <phase>integration-test</phase>
153 <finalName>smart-dao-${project.version}</finalName>
155 <descriptor>src/main/assembly/assemble-bin.xml</descriptor>
157 <attach>false</attach>
161 Assembly execution for building distribution with
165 <id>assemble-dist-with-dep</id>
166 <inherited>false</inherited>
167 <phase>integration-test</phase>
172 <finalName>smart-dao-${project.version}</finalName>
174 <descriptor>src/main/assembly/assemble-bin-with-dependency.xml</descriptor>
176 <attach>false</attach>
185 <id>push-gh-pages</id>
188 <family>unix</family>
194 <groupId>org.apache.maven.plugins</groupId>
195 <artifactId>maven-antrun-plugin</artifactId>
196 <inherited>false</inherited>
199 <id>copy-n-push-gh-pages</id>
200 <phase>install</phase>
206 <taskdef name="if" classname="net.sf.antcontrib.logic.IfTask" classpathref="maven.plugin.classpath"/>
207 <property name="ghpages_branch" value="${gh-pages.branch}" />
208 <property name="ghpages_path" value="${gh-pages.path}" />
209 <property name="ghpages_src_path" value="${project.build.directory}/${project.artifactId}-${project.version}-total-site.dir/${project.artifactId}-${project.version}/" />
210 <ant antfile="${basedir}/src/main/ant/gh-pages-build.xml">
211 <target name="copy_n_push"/>
219 <groupId>ant-contrib</groupId>
220 <artifactId>ant-contrib</artifactId>
221 <version>${ant.contrib.version}</version>