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>
34 <groupId>com.smartitengineering</groupId>
35 <version>${project.version}</version>
36 <artifactId>smart-domain</artifactId>
39 <groupId>com.smartitengineering</groupId>
40 <version>${project.version}</version>
41 <artifactId>smart-abstract-dao</artifactId>
44 <groupId>com.smartitengineering</groupId>
45 <version>${project.version}</version>
46 <artifactId>smart-dao-queryparam</artifactId>
49 <groupId>com.smartitengineering</groupId>
50 <version>${project.version}</version>
51 <artifactId>smart-hibernate-abstract-dao</artifactId>
54 <groupId>asm</groupId>
55 <artifactId>asm</artifactId>
58 <groupId>asm</groupId>
59 <artifactId>asm-attrs</artifactId>
62 <groupId>cglib</groupId>
63 <artifactId>cglib</artifactId>
68 <groupId>com.smartitengineering</groupId>
69 <version>${project.version}</version>
70 <artifactId>smart-cache</artifactId>
73 <groupId>com.smartitengineering</groupId>
74 <version>${project.version}</version>
75 <artifactId>smart-dao-search</artifactId>
78 <groupId>com.smartitengineering</groupId>
79 <version>${project.version}</version>
80 <artifactId>smart-rs</artifactId>
83 <groupId>com.smartitengineering.smart-version</groupId>
84 <version>${project.version}</version>
85 <artifactId>smart-version-api</artifactId>
88 <groupId>com.smartitengineering.smart-version</groupId>
89 <version>${project.version}</version>
90 <artifactId>smart-dao-version</artifactId>
93 <groupId>com.smartitengineering.smart-version</groupId>
94 <version>${project.version}</version>
95 <artifactId>smart-version-jgit-impl</artifactId>
100 <id>assemble-simple-dist</id>
103 <name>build.complete</name>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-assembly-plugin</artifactId>
112 <version>${assembly.version}</version>
113 <inherited>true</inherited>
115 <!-- Assembly execution for aggregating site -->
117 <id>assemble-site</id>
118 <phase>package</phase>
124 <descriptor>src/main/assembly/assemble-site.xml</descriptor>
128 <!-- Assembly execution for building distribution -->
130 <id>assemble-dist</id>
131 <inherited>false</inherited>
132 <phase>integration-test</phase>
138 <descriptor>src/main/assembly/assemble-bin.xml</descriptor>
148 <id>assemble-with-dep</id>
151 <name>build.complete.dist</name>
158 <groupId>org.apache.maven.plugins</groupId>
159 <artifactId>maven-assembly-plugin</artifactId>
160 <version>${assembly.version}</version>
161 <inherited>true</inherited>
164 Assembly execution for building distribution with
168 <id>assemble-dist-with-dep</id>
169 <inherited>false</inherited>
170 <phase>integration-test</phase>
176 <descriptor>src/main/assembly/assemble-bin-with-dependency.xml</descriptor>