Refactor smart-rs API into 2 modules
[smart-dao.git] / pom.xml
bloba7d94ed7c3e47806a027d364c2bf151141d1e52d
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     <groupId>com.smartitengineering</groupId>
25     <artifactId>smart-dao</artifactId>
26     <packaging>pom</packaging>
27     <version>0.4-SNAPSHOT</version>
28     <name>Smart DAO</name>
29     <inceptionYear>2007</inceptionYear>
30     <description>
31         This project basically aims to create an abstraction layer above common
32         ORM used this days and provide a simplified DAO layer which is not only
33         independent of the ORM tool being used but also integrated with other
34         services, for example App Layer Caching, Free Text Search Engine etc.
35         Initial target is to implement it for Hibernate and when JPA provides
36         Hibernate's Criteria like API implement for JPA as well. Integrate
37         App Layer Cache and Compass Framework.
38     </description>
39     <url>http://code.google.com/p/smart-dao</url>
40     <organization>
41         <name>Smart IT Engineering</name>
42         <url>http://www.smartitengineering.com</url>
43     </organization>
44     <issueManagement>
45         <system>Google Code Issue Tracker</system>
46         <url>http://code.google.com/p/smart-dao/issues/</url>
47     </issueManagement>
48     <mailingLists>
49         <mailingList>
50             <name>User List</name>
51             <archive>http://groups.google.com/group/smart-dao-users</archive>
52             <post>smart-dao-users@googlegroups.com</post>
53             <subscribe>smart-dao-users-subscribe@googlegroups.com</subscribe>
54             <unsubscribe>smart-dao-users+unsubscribe@googlegroups.com</unsubscribe>
55         </mailingList>
56         <mailingList>
57             <name>Developer List</name>
58             <archive>http://groups.google.com/group/smart-dao-dev</archive>
59             <post>smart-dao-dev@googlegroups.com</post>
60             <subscribe>smart-dao-dev-subscribe@googlegroups.com</subscribe>
61             <unsubscribe>smart-dao-dev+unsubscribe@googlegroups.com</unsubscribe>
62         </mailingList>
63     </mailingLists>
64     <licenses>
65         <license>
66             <name>LGPL v3</name>
67             <distribution>repo and manual</distribution>
68             <url>http://www.gnu.org/licenses/lgpl.html</url>
69         </license>
70     </licenses>
71     <developers>
72         <developer>
73             <id>imyousuf</id>
74             <name>Imran M Yousuf</name>
75             <email>imyousuf@smartitengineering.com</email>
76             <organization>Smart IT Engineering</organization>
77             <timezone>GMT +0600</timezone>
78             <roles>
79                 <role>Project Owner</role>
80                 <role>Developer</role>
81                 <role>Maintainer</role>
82             </roles>
83         </developer>
84     </developers>
85     <scm>
86         <connection>scm:git:git://repo.or.cz/smart-dao.git</connection>
87         <developerConnection>scm:git:ssh://imyousuf@repo.or.cz/srv/git/smart-dao.git</developerConnection>
88     </scm>
89     <distributionManagement>
90         <!-- use the following if you're not using a snapshot version. -->
91         <repository>
92             <id>java.net-m2-repository</id>
93             <url>java-net:/maven2-repository/trunk/repository/</url>
94         </repository>
95         <!-- use the following if you ARE using a snapshot version. -->
96         <snapshotRepository>
97             <id>free-ftp-snapshot-repo</id>
98             <name>My FTP snapshot</name>
99             <url>ftp://imyousuf.100webspace.net/imyousuf.100webspace.net/maven-repo/snapshot</url>
100         </snapshotRepository>
101     </distributionManagement>
102     <repositories>
103         <repository>
104             <id>maven2-repository.dev.java.net</id>
105             <name>Java.net Repository for Maven</name>
106             <url>http://download.java.net/maven/2/</url>
107             <layout>default</layout>
108         </repository>
109         <repository>
110             <id>compass-project.org</id>
111             <name>Compass</name>
112             <url>http://repo.compass-project.org</url>
113         </repository>
114     </repositories>
115     <dependencies>
116         <dependency>
117             <groupId>junit</groupId>
118             <artifactId>junit</artifactId>
119             <version>${junit.version}</version>
120             <scope>test</scope>
121         </dependency>
122     </dependencies>
123     <build>
124         <plugins>
125             <plugin>
126                 <groupId>org.apache.maven.plugins</groupId>
127                 <artifactId>maven-release-plugin</artifactId>
128                 <version>${release.version}</version>
129             </plugin>
130             <plugin>
131                 <groupId>org.apache.maven.plugins</groupId>
132                 <artifactId>maven-scm-plugin</artifactId>
133                 <version>${scm.version}</version>
134             </plugin>
135             <plugin>
136                 <groupId>org.apache.maven.plugins</groupId>
137                 <artifactId>maven-javadoc-plugin</artifactId>
138                 <version>${javadoc.version}</version>
139                 <inherited>true</inherited>
140                 <configuration>
141                     <aggregate>true</aggregate>
142                     <linksource>true</linksource>
143                     <attach>true</attach>
144                 </configuration>
145                 <executions>
146                     <execution>
147                         <id>gen-javadoc</id>
148                         <phase>package</phase>
149                         <goals>
150                             <goal>jar</goal>
151                         </goals>
152                     </execution>
153                 </executions>
154             </plugin>
155             <plugin>
156                 <artifactId>maven-compiler-plugin</artifactId>
157                 <version>${compiler.version}</version>
158                 <inherited>true</inherited>
159                 <configuration>
160                     <source>${javac.src.version}</source>
161                     <target>${javac.target.version}</target>
162                 </configuration>
163             </plugin>
164             <plugin>
165                 <groupId>org.apache.maven.plugins</groupId>
166                 <artifactId>maven-source-plugin</artifactId>
167                 <version>${src.version}</version>
168                 <inherited>true</inherited>
169                 <configuration>
170                     <attach>true</attach>
171                 </configuration>
172                 <executions>
173                     <execution>
174                         <id>attach-sources</id>
175                         <phase>verify</phase>
176                         <goals>
177                             <goal>jar</goal>
178                         </goals>
179                     </execution>
180                 </executions>
181             </plugin>
182             <plugin>
183                 <groupId>org.apache.maven.plugins</groupId>
184                 <artifactId>maven-changelog-plugin</artifactId>
185                 <version>${changelog.version}</version>
186                 <inherited>false</inherited>
187                 <dependencies>
188                     <dependency>
189                         <groupId>org.codehaus.plexus</groupId>
190                         <artifactId>plexus-utils</artifactId>
191                         <version>${plexus-utils.version}</version>
192                     </dependency>
193                     <dependency>
194                         <groupId>org.apache.maven.scm</groupId>
195                         <artifactId>maven-scm-provider-gitexe</artifactId>
196                         <version>${scm.version}</version>
197                     </dependency>
198                 </dependencies>
199             </plugin>
200         </plugins>
201         <extensions>
202             <extension>
203                 <groupId>org.jvnet.wagon-svn</groupId>
204                 <artifactId>wagon-svn</artifactId>
205                 <version>${wagon-svn.version}</version>
206             </extension>
207             <extension>
208                 <groupId>org.apache.maven.wagon</groupId>
209                 <artifactId>wagon-ftp</artifactId>
210                 <version>${wagon-ftp.version}</version>
211             </extension>
212         </extensions>
213     </build>
214     <reporting>
215         <plugins>
216             <plugin>
217                 <groupId>org.apache.maven.plugins</groupId>
218                 <artifactId>maven-site-plugin</artifactId>
219                 <version>${site.version}</version>
220                 <inherited>true</inherited>
221             </plugin>
222             <plugin>
223                 <groupId>org.apache.maven.plugins</groupId>
224                 <artifactId>maven-javadoc-plugin</artifactId>
225                 <version>${javadoc.version}</version>
226                 <configuration>
227                     <aggregate>false</aggregate>
228                     <linksource>true</linksource>
229                 </configuration>
230             </plugin>
231             <plugin>
232                 <groupId>org.codehaus.mojo</groupId>
233                 <artifactId>cobertura-maven-plugin</artifactId>
234                 <version>${cobertura.version}</version>
235             </plugin>
236             <plugin>
237                 <groupId>org.apache.maven.plugins</groupId>
238                 <artifactId>maven-surefire-report-plugin</artifactId>
239                 <version>${surefire-report.version}</version>
240                 <inherited>true</inherited>
241             </plugin>
242             <plugin>
243                 <groupId>org.codehaus.mojo</groupId>
244                 <artifactId>findbugs-maven-plugin</artifactId>
245                 <version>${findbugs.version}</version>
246                 <inherited>true</inherited>
247             </plugin>
248             <plugin>
249                 <groupId>org.apache.maven.plugins</groupId>
250                 <artifactId>maven-changelog-plugin</artifactId>
251                 <version>${changelog.version}</version>
252                 <configuration>
253                     <type>tag</type>
254                     <tags>
255                         <tag implementation="java.lang.String">${last.release.tag}
256                         </tag>
257                         <tag implementation="java.lang.String">HEAD
258                         </tag>
259                     </tags>
260                 </configuration>
261             </plugin>
262         </plugins>
263     </reporting>
264     <profiles>
265         <profile>
266             <id>build-ext</id>
267             <activation>
268                 <property>
269                     <name>build.complete</name>
270                     <value>true</value>
271                 </property>
272             </activation>
273             <build>
274                 <plugins>
275                     <plugin>
276                         <groupId>org.apache.maven.plugins</groupId>
277                         <artifactId>maven-changelog-plugin</artifactId>
278                         <version>${changelog.version}</version>
279                         <inherited>false</inherited>
280                         <dependencies>
281                             <dependency>
282                                 <groupId>org.codehaus.plexus</groupId>
283                                 <artifactId>plexus-utils</artifactId>
284                                 <version>${plexus-utils.version}</version>
285                             </dependency>
286                             <dependency>
287                                 <groupId>org.apache.maven.scm</groupId>
288                                 <artifactId>maven-scm-provider-gitexe</artifactId>
289                                 <version>${scm.version}</version>
290                             </dependency>
291                         </dependencies>
292                         <configuration>
293                             <outputXML>./target/change/changes.xml</outputXML>
294                         </configuration>
295                         <executions>
296                             <execution>
297                                 <id>attach-changelog</id>
298                                 <phase>generate-sources</phase>
299                                 <inherited>false</inherited>
300                                 <goals>
301                                     <goal>changelog</goal>
302                                 </goals>
303                             </execution>
304                         </executions>
305                     </plugin>
306                     <plugin>
307                         <groupId>org.codehaus.mojo</groupId>
308                         <artifactId>xml-maven-plugin</artifactId>
309                         <version>${xml-plugin.version}</version>
310                         <inherited>false</inherited>
311                         <executions>
312                             <execution>
313                                 <id>generate-changes</id>
314                                 <phase>generate-resources</phase>
315                                 <inherited>false</inherited>
316                                 <goals>
317                                     <goal>transform</goal>
318                                 </goals>
319                             </execution>
320                         </executions>
321                         <configuration>
322                             <transformationSets>
323                                 <transformationSet>
324                                     <dir>./target/change</dir>
325                                     <stylesheet>src/main/xsl/changes.xsl</stylesheet>
326                                 </transformationSet>
327                             </transformationSets>
328                         </configuration>
329                     </plugin>
330                     <plugin>
331                         <groupId>org.apache.maven.plugins</groupId>
332                         <artifactId>maven-antrun-plugin</artifactId>
333                         <version>${antrun.version}</version>
334                         <inherited>false</inherited>
335                         <executions>
336                             <execution>
337                                 <id>rename-changes</id>
338                                 <phase>generate-resources</phase>
339                                 <inherited>false</inherited>
340                                 <goals>
341                                     <goal>run</goal>
342                                 </goals>
343                                 <configuration>
344                                     <tasks>
345                                         <move file="target/generated-resources/xml/xslt/changes.xml" tofile="target/generated-resources/xml/xslt/changes-${version}.html" verbose="true"/>
346                                     </tasks>
347                                 </configuration>
348                             </execution>
349                         </executions>
350                         <dependencies>
351                             <dependency>
352                                 <groupId>ant-contrib</groupId>
353                                 <artifactId>ant-contrib</artifactId>
354                                 <version>${ant-contrib.version}</version>
355                             </dependency>
356                         </dependencies>
357                     </plugin>
358                     <plugin>
359                         <groupId>org.apache.maven.plugins</groupId>
360                         <artifactId>maven-assembly-plugin</artifactId>
361                         <version>${assembly.version}</version>
362                         <inherited>true</inherited>
363                         <executions>
364                             <!-- Assembly execution for aggregating gh-pages -->
365                             <execution>
366                                 <id>assemble-static-gh-pages</id>
367                                 <phase>compile</phase>
368                                 <inherited>false</inherited>
369                                 <goals>
370                                     <goal>single</goal>
371                                 </goals>
372                                 <configuration>
373                                     <descriptors>
374                                         <descriptor>src/main/assembly/assemble-gh-pages.xml</descriptor>
375                                     </descriptors>
376                                 </configuration>
377                             </execution>
378                             <!-- Filter README -->
379                             <execution>
380                                 <id>assemble-readme</id>
381                                 <phase>compile</phase>
382                                 <inherited>true</inherited>
383                                 <goals>
384                                     <goal>single</goal>
385                                 </goals>
386                                 <configuration>
387                                     <descriptors>
388                                         <descriptor>src/main/assembly/assemble-readme.xml</descriptor>
389                                     </descriptors>
390                                 </configuration>
391                             </execution>
392                         </executions>
393                     </plugin>
394                     <plugin>
395                         <groupId>org.apache.maven.plugins</groupId>
396                         <artifactId>maven-site-plugin</artifactId>
397                         <version>${site.version}</version>
398                         <inherited>true</inherited>
399                         <executions>
400                             <execution>
401                                 <id>site-gen</id>
402                                 <phase>prepare-package</phase>
403                                 <inherited>true</inherited>
404                                 <goals>
405                                     <goal>site</goal>
406                                 </goals>
407                             </execution>
408                         </executions>
409                     </plugin>
410                 </plugins>
411             </build>
412         </profile>
413     </profiles>
414     <modules>
415         <module>smart-hibernate-abstract-dao</module>
416         <module>smart-abstract-dao</module>
417         <module>smart-domain</module>
418         <module>smart-cache</module>
419         <module>smart-dao-search</module>
420         <module>smart-version</module>
421         <module>smart-dao-queryparam</module>
422         <module>smart-rs</module>
423         <module>docs</module>
424         <module>smart-exim</module>
425     </modules>
426     <properties>
427         <commons-lang.version>2.3</commons-lang.version>
428         <smart-util.version>0.2-SNAPSHOT</smart-util.version>
429         <jgit.version>0.4-SNAPSHOT</jgit.version>
430         <scm.version>1.3-SNAPSHOT</scm.version>
431         <jersey.version>1.0.3</jersey.version>
432         <changelog.version>2.2-SNAPSHOT</changelog.version>
433         <plexus-utils.version>1.5.6</plexus-utils.version>
434         <asm.version>3.1</asm.version>
435         <last.release.tag>0.3</last.release.tag>
436         <antrun.version>1.2</antrun.version>
437         <junit.version>3.8.1</junit.version>
438         <wagon-svn.version>1.8</wagon-svn.version>
439         <wagon-ftp.version>1.0-alpha-6</wagon-ftp.version>
440         <xml-plugin.version>1.0-beta-2</xml-plugin.version>
441         <src.version>2.0.4</src.version>
442         <compiler.version>2.0.2</compiler.version>
443         <javadoc.version>2.5</javadoc.version>
444         <release.version>2.0-beta-8</release.version>
445         <javac.src.version>1.5</javac.src.version>
446         <javac.target.version>1.5</javac.target.version>
447         <jaxrs.version>1.0</jaxrs.version>
448         <cobertura.version>2.2</cobertura.version>
449         <site.version>2.0-beta-7</site.version>
450         <assembly.version>2.2-beta-2</assembly.version>
451         <jar.version>2.2</jar.version>
452         <jmock.version>2.1.0</jmock.version>
453         <ehcache.version>1.5.0</ehcache.version>
454         <compass.version>2.1.0</compass.version>
455         <spring.version>2.5.4</spring.version>
456         <spring.hibernate.version>2.0.8</spring.hibernate.version>
457         <hibernate.version>3.2.5.ga</hibernate.version>
458         <c3p0.version>0.9.1.2</c3p0.version>
459         <derby.version>10.4.2.0</derby.version>
460         <cglib.version>2.1_3</cglib.version>
461         <surefire-report.version>2.4.2</surefire-report.version>
462         <findbugs.version>2.0</findbugs.version>
463         <dom4j.version>1.6.1</dom4j.version>
464         <ant-contrib.version>1.0b3</ant-contrib.version>
465         <gh-pages.branch>gh-pages</gh-pages.branch>
466     </properties>
467 </project>