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>
110 <id>assemble-simple-dist</id>
113 <name>build.complete</name>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-assembly-plugin</artifactId>
122 <version>${assembly.version}</version>
123 <inherited>false</inherited>
125 <!-- Assembly execution for aggregating site -->
127 <id>assemble-site</id>
128 <phase>package</phase>
134 <descriptor>src/main/assembly/assemble-site.xml</descriptor>
144 <id>assemble-with-dep</id>
147 <name>build.complete.dist</name>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-assembly-plugin</artifactId>
156 <version>${assembly.version}</version>
157 <inherited>true</inherited>
159 <!-- Assembly execution for building distribution -->
161 <id>assemble-dist</id>
162 <inherited>false</inherited>
163 <phase>integration-test</phase>
168 <finalName>smart-dao-${project.version}</finalName>
170 <descriptor>src/main/assembly/assemble-bin.xml</descriptor>
172 <attach>false</attach>
176 Assembly execution for building distribution with
180 <id>assemble-dist-with-dep</id>
181 <inherited>false</inherited>
182 <phase>integration-test</phase>
187 <finalName>smart-dao-${project.version}</finalName>
189 <descriptor>src/main/assembly/assemble-bin-with-dependency.xml</descriptor>
191 <attach>false</attach>
200 <id>push-gh-pages</id>
203 <family>unix</family>
209 <groupId>org.apache.maven.plugins</groupId>
210 <artifactId>maven-antrun-plugin</artifactId>
211 <version>${antrun.version}</version>
212 <inherited>false</inherited>
215 <id>copy-n-push-gh-pages</id>
216 <phase>install</phase>
222 <taskdef name="if" classname="net.sf.antcontrib.logic.IfTask" classpathref="maven.plugin.classpath"/>
223 <property name="ghpages_branch" value="${gh-pages.branch}" />
224 <property name="ghpages_path" value="${gh-pages.path}" />
225 <property name="ghpages_src_path" value="${project.build.directory}/${project.artifactId}-${project.version}-total-site.dir/${project.artifactId}-${project.version}/" />
226 <ant antfile="${basedir}/src/main/ant/gh-pages-build.xml">
227 <target name="copy_n_push"/>
235 <groupId>ant-contrib</groupId>
236 <artifactId>ant-contrib</artifactId>
237 <version>${ant-contrib.version}</version>