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>
38 <version>${assembly.version}</version>
44 <groupId>com.smartitengineering</groupId>
45 <version>${project.version}</version>
46 <artifactId>smart-domain</artifactId>
49 <groupId>com.smartitengineering</groupId>
50 <version>${project.version}</version>
51 <artifactId>smart-abstract-dao</artifactId>
54 <groupId>com.smartitengineering</groupId>
55 <version>${project.version}</version>
56 <artifactId>smart-dao-queryparam</artifactId>
59 <groupId>com.smartitengineering</groupId>
60 <version>${project.version}</version>
61 <artifactId>smart-hibernate-abstract-dao</artifactId>
64 <groupId>asm</groupId>
65 <artifactId>asm</artifactId>
68 <groupId>asm</groupId>
69 <artifactId>asm-attrs</artifactId>
72 <groupId>cglib</groupId>
73 <artifactId>cglib</artifactId>
78 <groupId>com.smartitengineering</groupId>
79 <version>${project.version}</version>
80 <artifactId>smart-cache</artifactId>
83 <groupId>com.smartitengineering</groupId>
84 <version>${project.version}</version>
85 <artifactId>smart-dao-search</artifactId>
88 <groupId>com.smartitengineering</groupId>
89 <version>${project.version}</version>
90 <artifactId>smart-rs</artifactId>
93 <groupId>com.smartitengineering.smart-version</groupId>
94 <version>${project.version}</version>
95 <artifactId>smart-version-api</artifactId>
98 <groupId>com.smartitengineering.smart-version</groupId>
99 <version>${project.version}</version>
100 <artifactId>smart-dao-version</artifactId>
103 <groupId>com.smartitengineering.smart-version</groupId>
104 <version>${project.version}</version>
105 <artifactId>smart-version-jgit-impl</artifactId>
108 <groupId>com.smartitengineering.smart-exim</groupId>
109 <version>${project.version}</version>
110 <artifactId>smart-exim-api</artifactId>
113 <groupId>com.smartitengineering.smart-exim</groupId>
114 <version>${project.version}</version>
115 <artifactId>smart-exim-xml-impl</artifactId>
120 <id>assemble-simple-dist</id>
123 <name>build.complete</name>
130 <groupId>org.apache.maven.plugins</groupId>
131 <artifactId>maven-assembly-plugin</artifactId>
132 <version>${assembly.version}</version>
133 <inherited>false</inherited>
135 <!-- Assembly execution for aggregating site -->
137 <id>assemble-site</id>
138 <phase>package</phase>
144 <descriptor>src/main/assembly/assemble-site.xml</descriptor>
154 <id>assemble-with-dep</id>
157 <name>build.complete.dist</name>
164 <groupId>org.apache.maven.plugins</groupId>
165 <artifactId>maven-assembly-plugin</artifactId>
166 <version>${assembly.version}</version>
167 <inherited>true</inherited>
169 <!-- Assembly execution for building distribution -->
171 <id>assemble-dist</id>
172 <inherited>false</inherited>
173 <phase>integration-test</phase>
178 <finalName>smart-dao-${project.version}</finalName>
180 <descriptor>src/main/assembly/assemble-bin.xml</descriptor>
182 <attach>false</attach>
186 Assembly execution for building distribution with
190 <id>assemble-dist-with-dep</id>
191 <inherited>false</inherited>
192 <phase>integration-test</phase>
197 <finalName>smart-dao-${project.version}</finalName>
199 <descriptor>src/main/assembly/assemble-bin-with-dependency.xml</descriptor>
201 <attach>false</attach>
210 <id>push-gh-pages</id>
213 <family>unix</family>
219 <groupId>org.apache.maven.plugins</groupId>
220 <artifactId>maven-antrun-plugin</artifactId>
221 <version>${antrun.version}</version>
222 <inherited>false</inherited>
225 <id>copy-n-push-gh-pages</id>
226 <phase>install</phase>
232 <taskdef name="if" classname="net.sf.antcontrib.logic.IfTask" classpathref="maven.plugin.classpath"/>
233 <property name="ghpages_branch" value="${gh-pages.branch}" />
234 <property name="ghpages_path" value="${gh-pages.path}" />
235 <property name="ghpages_src_path" value="${project.build.directory}/${project.artifactId}-${project.version}-total-site.dir/${project.artifactId}-${project.version}/" />
236 <ant antfile="${basedir}/src/main/ant/gh-pages-build.xml">
237 <target name="copy_n_push"/>
245 <groupId>ant-contrib</groupId>
246 <artifactId>ant-contrib</artifactId>
247 <version>${ant-contrib.version}</version>