Extend filter config to be able to specify a cell range
[smart-dao.git] / pom.xml
blobc0f0ff8c37c88e9ea7ea6165fed000f3f2500faf
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  *   
4  * This is a common dao with basic CRUD operations and is not limited to any 
5  * persistent layer implementation
6  * 
7  * Copyright (C) 2008  Imran M Yousuf (imyousuf@smartitengineering.com)
8  * 
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
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23   <modelVersion>4.0.0</modelVersion>
24   <parent>
25     <groupId>com.smartitengineering</groupId>
26     <artifactId>smart-core</artifactId>
27     <version>0.1-SNAPSHOT</version>
28   </parent>
29   <groupId>com.smartitengineering</groupId>
30   <artifactId>smart-dao</artifactId>
31   <packaging>pom</packaging>
32   <version>0.4-SNAPSHOT</version>
33   <name>Smart DAO</name>
34   <inceptionYear>2007</inceptionYear>
35   <description>
36     This project basically aims to create an abstraction layer above common
37     ORM used this days and provide a simplified DAO layer which is not only
38     independent of the ORM tool being used but also integrated with other
39     services, for example App Layer Caching, Free Text Search Engine etc.
40     Initial target is to implement it for Hibernate and when JPA provides
41     Hibernate's Criteria like API implement for JPA as well. Integrate
42     App Layer Cache and Compass Framework.
43   </description>
44   <url>http://code.google.com/p/smart-dao</url>
45   <issueManagement>
46     <system>Google Code Issue Tracker</system>
47     <url>http://code.google.com/p/smart-dao/issues/</url>
48   </issueManagement>
49   <mailingLists>
50     <mailingList>
51       <name>User List</name>
52       <archive>http://groups.google.com/group/smart-dao-users</archive>
53       <post>smart-dao-users@googlegroups.com</post>
54       <subscribe>smart-dao-users-subscribe@googlegroups.com</subscribe>
55       <unsubscribe>smart-dao-users+unsubscribe@googlegroups.com</unsubscribe>
56     </mailingList>
57     <mailingList>
58       <name>Developer List</name>
59       <archive>http://groups.google.com/group/smart-dao-dev</archive>
60       <post>smart-dao-dev@googlegroups.com</post>
61       <subscribe>smart-dao-dev-subscribe@googlegroups.com</subscribe>
62       <unsubscribe>smart-dao-dev+unsubscribe@googlegroups.com</unsubscribe>
63     </mailingList>
64   </mailingLists>
65   <licenses>
66     <license>
67       <name>LGPL v3</name>
68       <distribution>repo and manual</distribution>
69       <url>http://www.gnu.org/licenses/lgpl.html</url>
70     </license>
71   </licenses>
72   <developers>
73     <developer>
74       <id>imyousuf</id>
75       <name>Imran M Yousuf</name>
76       <email>imyousuf@smartitengineering.com</email>
77       <organization>Smart IT Engineering</organization>
78       <timezone>GMT +0600</timezone>
79       <roles>
80         <role>Project Owner</role>
81         <role>Developer</role>
82         <role>Maintainer</role>
83       </roles>
84     </developer>
85   </developers>
86   <scm>
87     <connection>scm:git:git://github.com/imyousuf/smart-dao.git</connection>
88     <developerConnection>scm:git:ssh://git@github.com:imyousuf/smart-dao.git</developerConnection>
89   </scm>
90   <distributionManagement>
91     <site>
92       <id>smartit-googlecode</id>
93       <name>Smart IT Engineering GoogleCode repository</name>
94       <url>svn:https://imyousuf@smart-it.googlecode.com/svn/maven2/site/dao</url>
95     </site>
96   </distributionManagement>
97   <build>
98     <plugins>
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-source-plugin</artifactId>
102       </plugin>
103       <plugin>
104         <groupId>org.apache.maven.plugins</groupId>
105         <artifactId>maven-javadoc-plugin</artifactId>
106       </plugin>
107       <plugin>
108         <groupId>org.apache.maven.plugins</groupId>
109         <artifactId>maven-compiler-plugin</artifactId>
110       </plugin>
111       <plugin>
112         <groupId>org.apache.maven.plugins</groupId>
113         <artifactId>maven-surefire-plugin</artifactId>
114       </plugin>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-release-plugin</artifactId>
118       </plugin>
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-scm-plugin</artifactId>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-changelog-plugin</artifactId>
126         <inherited>false</inherited>
127         <dependencies>
128           <dependency>
129             <groupId>org.codehaus.plexus</groupId>
130             <artifactId>plexus-utils</artifactId>
131             <version>${plexus-utils.version}</version>
132           </dependency>
133           <dependency>
134             <groupId>org.apache.maven.scm</groupId>
135             <artifactId>maven-scm-provider-gitexe</artifactId>
136             <version>${scm.version}</version>
137           </dependency>
138         </dependencies>
139       </plugin>
140     </plugins>
141   </build>
142   <reporting>
143     <plugins>
144       <plugin>
145         <groupId>org.apache.maven.plugins</groupId>
146         <artifactId>maven-site-plugin</artifactId>
147         <inherited>true</inherited>
148       </plugin>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-javadoc-plugin</artifactId>
152         <configuration>
153           <aggregate>false</aggregate>
154           <linksource>true</linksource>
155         </configuration>
156       </plugin>
157       <plugin>
158         <groupId>org.codehaus.mojo</groupId>
159         <artifactId>cobertura-maven-plugin</artifactId>
160       </plugin>
161       <plugin>
162         <groupId>org.apache.maven.plugins</groupId>
163         <artifactId>maven-surefire-report-plugin</artifactId>
164         <inherited>true</inherited>
165       </plugin>
166       <plugin>
167         <groupId>org.codehaus.mojo</groupId>
168         <artifactId>findbugs-maven-plugin</artifactId>
169         <inherited>true</inherited>
170       </plugin>
171       <plugin>
172         <groupId>org.apache.maven.plugins</groupId>
173         <artifactId>maven-changelog-plugin</artifactId>
174         <configuration>
175           <type>tag</type>
176           <tags>
177             <tag implementation="java.lang.String">${last.release.tag}
178             </tag>
179             <tag implementation="java.lang.String">HEAD
180             </tag>
181           </tags>
182         </configuration>
183       </plugin>
184     </plugins>
185   </reporting>
186   <profiles>
187     <profile>
188       <id>build-ext</id>
189       <activation>
190         <property>
191           <name>build.complete</name>
192           <value>true</value>
193         </property>
194       </activation>
195       <build>
196         <plugins>
197           <plugin>
198             <groupId>org.apache.maven.plugins</groupId>
199             <artifactId>maven-changelog-plugin</artifactId>
200             <inherited>false</inherited>
201             <dependencies>
202               <dependency>
203                 <groupId>org.codehaus.plexus</groupId>
204                 <artifactId>plexus-utils</artifactId>
205                 <version>${plexus-utils.version}</version>
206               </dependency>
207               <dependency>
208                 <groupId>org.apache.maven.scm</groupId>
209                 <artifactId>maven-scm-provider-gitexe</artifactId>
210                 <version>${scm.version}</version>
211               </dependency>
212             </dependencies>
213             <configuration>
214               <outputXML>./target/change/changes.xml</outputXML>
215             </configuration>
216             <executions>
217               <execution>
218                 <id>attach-changelog</id>
219                 <phase>generate-sources</phase>
220                 <inherited>false</inherited>
221                 <goals>
222                   <goal>changelog</goal>
223                 </goals>
224               </execution>
225             </executions>
226           </plugin>
227           <plugin>
228             <groupId>org.codehaus.mojo</groupId>
229             <artifactId>xml-maven-plugin</artifactId>
230             <inherited>false</inherited>
231             <executions>
232               <execution>
233                 <id>generate-changes</id>
234                 <phase>generate-resources</phase>
235                 <inherited>false</inherited>
236                 <goals>
237                   <goal>transform</goal>
238                 </goals>
239               </execution>
240             </executions>
241             <configuration>
242               <transformationSets>
243                 <transformationSet>
244                   <dir>./target/change</dir>
245                   <stylesheet>src/main/xsl/changes.xsl</stylesheet>
246                 </transformationSet>
247               </transformationSets>
248             </configuration>
249           </plugin>
250           <plugin>
251             <groupId>org.apache.maven.plugins</groupId>
252             <artifactId>maven-antrun-plugin</artifactId>
253             <inherited>false</inherited>
254             <executions>
255               <execution>
256                 <id>rename-changes</id>
257                 <phase>generate-resources</phase>
258                 <inherited>false</inherited>
259                 <goals>
260                   <goal>run</goal>
261                 </goals>
262                 <configuration>
263                   <tasks>
264                     <move file="target/generated-resources/xml/xslt/changes.xml" tofile="target/generated-resources/xml/xslt/changes-${version}.html" verbose="true"/>
265                   </tasks>
266                 </configuration>
267               </execution>
268             </executions>
269             <dependencies>
270               <dependency>
271                 <groupId>ant-contrib</groupId>
272                 <artifactId>ant-contrib</artifactId>
273                 <version>${ant-contrib.version}</version>
274               </dependency>
275             </dependencies>
276           </plugin>
277           <plugin>
278             <groupId>org.apache.maven.plugins</groupId>
279             <artifactId>maven-assembly-plugin</artifactId>
280             <inherited>true</inherited>
281             <executions>
282               <!-- Assembly execution for aggregating gh-pages -->
283               <execution>
284                 <id>assemble-static-gh-pages</id>
285                 <phase>compile</phase>
286                 <inherited>false</inherited>
287                 <goals>
288                   <goal>single</goal>
289                 </goals>
290                 <configuration>
291                   <descriptors>
292                     <descriptor>src/main/assembly/assemble-gh-pages.xml</descriptor>
293                   </descriptors>
294                 </configuration>
295               </execution>
296               <!-- Filter README -->
297               <execution>
298                 <id>assemble-readme</id>
299                 <phase>compile</phase>
300                 <inherited>true</inherited>
301                 <goals>
302                   <goal>single</goal>
303                 </goals>
304                 <configuration>
305                   <descriptors>
306                     <descriptor>src/main/assembly/assemble-readme.xml</descriptor>
307                   </descriptors>
308                 </configuration>
309               </execution>
310             </executions>
311           </plugin>
312           <plugin>
313             <groupId>org.apache.maven.plugins</groupId>
314             <artifactId>maven-site-plugin</artifactId>
315             <inherited>true</inherited>
316             <executions>
317               <execution>
318                 <id>site-gen</id>
319                 <phase>prepare-package</phase>
320                 <inherited>true</inherited>
321                 <goals>
322                   <goal>site</goal>
323                 </goals>
324               </execution>
325             </executions>
326           </plugin>
327         </plugins>
328       </build>
329     </profile>
330     <profile>
331       <id>sonar-config</id>
332       <activation>
333         <property>
334           <name>sonar.enabled</name>
335           <value>true</value>
336         </property>
337       </activation>
338       <build>
339         <plugins>
340           <plugin>
341             <groupId>org.codehaus.mojo</groupId>
342             <artifactId>sonar-maven-plugin</artifactId>
343           </plugin>
344         </plugins>
345       </build>
346     </profile>
347   </profiles>
348   <modules>
349     <module>smart-hibernate-abstract-dao</module>
350     <module>smart-abstract-dao</module>
351     <module>smart-domain</module>
352     <module>smart-cache</module>
353     <module>smart-dao-search</module>
354     <module>smart-version</module>
355     <module>smart-dao-queryparam</module>
356     <module>smart-rs</module>
357     <module>docs</module>
358     <module>smart-exim</module>
359     <module>smart-hbase-dao</module>
360   </modules>
361 </project>