Fix the behavior of Id of a domain
[smart-dao.git] / pom.xml
blob6aa2a8fc7f376c79c2d10c569597b25e48f05d90
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         <repository>
115             <id>free-ftp-snapshot-rep</id>
116             <name>Smart IT Snapshot repo</name>
117             <url>http://dev.smartitengineering.com/maven-repo/snapshot/</url>
118             <layout>default</layout>
119             <releases>
120                 <enabled>false</enabled>
121             </releases>
122             <snapshots>
123                 <enabled>true</enabled>
124             </snapshots>
125         </repository>
126         <repository>
127             <id>apache-sonatype-snapshot</id>
128             <name>Apache Snapshot repo hosted by Sonatype</name>
129             <url>http://repository.sonatype.org/content/repositories/apache-snapshots/</url>
130             <layout>default</layout>
131             <releases>
132                 <enabled>false</enabled>
133             </releases>
134             <snapshots>
135                 <enabled>true</enabled>
136             </snapshots>
137         </repository>
138     </repositories>
139     <dependencies>
140         <dependency>
141             <groupId>junit</groupId>
142             <artifactId>junit</artifactId>
143             <version>${junit.version}</version>
144             <scope>test</scope>
145         </dependency>
146     </dependencies>
147     <build>
148         <plugins>
149             <plugin>
150                 <groupId>org.apache.maven.plugins</groupId>
151                 <artifactId>maven-release-plugin</artifactId>
152                 <version>${release.version}</version>
153             </plugin>
154             <plugin>
155                 <groupId>org.apache.maven.plugins</groupId>
156                 <artifactId>maven-scm-plugin</artifactId>
157                 <version>${scm.version}</version>
158             </plugin>
159             <plugin>
160                 <groupId>org.apache.maven.plugins</groupId>
161                 <artifactId>maven-javadoc-plugin</artifactId>
162                 <version>${javadoc.version}</version>
163                 <inherited>true</inherited>
164                 <configuration>
165                     <aggregate>true</aggregate>
166                     <linksource>true</linksource>
167                     <attach>true</attach>
168                 </configuration>
169                 <executions>
170                     <execution>
171                         <id>gen-javadoc</id>
172                         <phase>package</phase>
173                         <goals>
174                             <goal>jar</goal>
175                         </goals>
176                     </execution>
177                 </executions>
178             </plugin>
179             <plugin>
180                 <artifactId>maven-compiler-plugin</artifactId>
181                 <version>${compiler.version}</version>
182                 <inherited>true</inherited>
183                 <configuration>
184                     <source>${javac.src.version}</source>
185                     <target>${javac.target.version}</target>
186                 </configuration>
187             </plugin>
188             <plugin>
189                 <groupId>org.apache.maven.plugins</groupId>
190                 <artifactId>maven-source-plugin</artifactId>
191                 <version>${src.version}</version>
192                 <inherited>true</inherited>
193                 <configuration>
194                     <attach>true</attach>
195                 </configuration>
196                 <executions>
197                     <execution>
198                         <id>attach-sources</id>
199                         <phase>verify</phase>
200                         <goals>
201                             <goal>jar</goal>
202                         </goals>
203                     </execution>
204                 </executions>
205             </plugin>
206             <plugin>
207                 <groupId>org.apache.maven.plugins</groupId>
208                 <artifactId>maven-changelog-plugin</artifactId>
209                 <version>${changelog.version}</version>
210                 <inherited>false</inherited>
211                 <dependencies>
212                     <dependency>
213                         <groupId>org.codehaus.plexus</groupId>
214                         <artifactId>plexus-utils</artifactId>
215                         <version>${plexus-utils.version}</version>
216                     </dependency>
217                     <dependency>
218                         <groupId>org.apache.maven.scm</groupId>
219                         <artifactId>maven-scm-provider-gitexe</artifactId>
220                         <version>${scm.version}</version>
221                     </dependency>
222                 </dependencies>
223             </plugin>
224         </plugins>
225         <extensions>
226             <extension>
227                 <groupId>org.jvnet.wagon-svn</groupId>
228                 <artifactId>wagon-svn</artifactId>
229                 <version>${wagon-svn.version}</version>
230             </extension>
231             <extension>
232                 <groupId>org.apache.maven.wagon</groupId>
233                 <artifactId>wagon-ftp</artifactId>
234                 <version>${wagon-ftp.version}</version>
235             </extension>
236         </extensions>
237     </build>
238     <reporting>
239         <plugins>
240             <plugin>
241                 <groupId>org.apache.maven.plugins</groupId>
242                 <artifactId>maven-site-plugin</artifactId>
243                 <version>${site.version}</version>
244                 <inherited>true</inherited>
245             </plugin>
246             <plugin>
247                 <groupId>org.apache.maven.plugins</groupId>
248                 <artifactId>maven-javadoc-plugin</artifactId>
249                 <version>${javadoc.version}</version>
250                 <configuration>
251                     <aggregate>false</aggregate>
252                     <linksource>true</linksource>
253                 </configuration>
254             </plugin>
255             <plugin>
256                 <groupId>org.codehaus.mojo</groupId>
257                 <artifactId>cobertura-maven-plugin</artifactId>
258                 <version>${cobertura.version}</version>
259             </plugin>
260             <plugin>
261                 <groupId>org.apache.maven.plugins</groupId>
262                 <artifactId>maven-surefire-report-plugin</artifactId>
263                 <version>${surefire-report.version}</version>
264                 <inherited>true</inherited>
265             </plugin>
266             <plugin>
267                 <groupId>org.codehaus.mojo</groupId>
268                 <artifactId>findbugs-maven-plugin</artifactId>
269                 <version>${findbugs.version}</version>
270                 <inherited>true</inherited>
271             </plugin>
272             <plugin>
273                 <groupId>org.apache.maven.plugins</groupId>
274                 <artifactId>maven-changelog-plugin</artifactId>
275                 <version>${changelog.version}</version>
276                 <configuration>
277                     <type>tag</type>
278                     <tags>
279                         <tag implementation="java.lang.String">${last.release.tag}
280                         </tag>
281                         <tag implementation="java.lang.String">HEAD
282                         </tag>
283                     </tags>
284                 </configuration>
285             </plugin>
286         </plugins>
287     </reporting>
288     <profiles>
289         <profile>
290             <id>build-ext</id>
291             <activation>
292                 <property>
293                     <name>build.complete</name>
294                     <value>true</value>
295                 </property>
296             </activation>
297             <build>
298                 <plugins>
299                     <plugin>
300                         <groupId>org.apache.maven.plugins</groupId>
301                         <artifactId>maven-changelog-plugin</artifactId>
302                         <version>${changelog.version}</version>
303                         <inherited>false</inherited>
304                         <dependencies>
305                             <dependency>
306                                 <groupId>org.codehaus.plexus</groupId>
307                                 <artifactId>plexus-utils</artifactId>
308                                 <version>${plexus-utils.version}</version>
309                             </dependency>
310                             <dependency>
311                                 <groupId>org.apache.maven.scm</groupId>
312                                 <artifactId>maven-scm-provider-gitexe</artifactId>
313                                 <version>${scm.version}</version>
314                             </dependency>
315                         </dependencies>
316                         <configuration>
317                             <outputXML>./target/change/changes.xml</outputXML>
318                         </configuration>
319                         <executions>
320                             <execution>
321                                 <id>attach-changelog</id>
322                                 <phase>generate-sources</phase>
323                                 <inherited>false</inherited>
324                                 <goals>
325                                     <goal>changelog</goal>
326                                 </goals>
327                             </execution>
328                         </executions>
329                     </plugin>
330                     <plugin>
331                         <groupId>org.codehaus.mojo</groupId>
332                         <artifactId>xml-maven-plugin</artifactId>
333                         <version>${xml-plugin.version}</version>
334                         <inherited>false</inherited>
335                         <executions>
336                             <execution>
337                                 <id>generate-changes</id>
338                                 <phase>generate-resources</phase>
339                                 <inherited>false</inherited>
340                                 <goals>
341                                     <goal>transform</goal>
342                                 </goals>
343                             </execution>
344                         </executions>
345                         <configuration>
346                             <transformationSets>
347                                 <transformationSet>
348                                     <dir>./target/change</dir>
349                                     <stylesheet>src/main/xsl/changes.xsl</stylesheet>
350                                 </transformationSet>
351                             </transformationSets>
352                         </configuration>
353                     </plugin>
354                     <plugin>
355                         <groupId>org.apache.maven.plugins</groupId>
356                         <artifactId>maven-antrun-plugin</artifactId>
357                         <version>${antrun.version}</version>
358                         <inherited>false</inherited>
359                         <executions>
360                             <execution>
361                                 <id>rename-changes</id>
362                                 <phase>generate-resources</phase>
363                                 <inherited>false</inherited>
364                                 <goals>
365                                     <goal>run</goal>
366                                 </goals>
367                                 <configuration>
368                                     <tasks>
369                                         <move file="target/generated-resources/xml/xslt/changes.xml" tofile="target/generated-resources/xml/xslt/changes-${version}.html" verbose="true"/>
370                                     </tasks>
371                                 </configuration>
372                             </execution>
373                         </executions>
374                         <dependencies>
375                             <dependency>
376                                 <groupId>ant-contrib</groupId>
377                                 <artifactId>ant-contrib</artifactId>
378                                 <version>${ant-contrib.version}</version>
379                             </dependency>
380                         </dependencies>
381                     </plugin>
382                     <plugin>
383                         <groupId>org.apache.maven.plugins</groupId>
384                         <artifactId>maven-assembly-plugin</artifactId>
385                         <version>${assembly.version}</version>
386                         <inherited>true</inherited>
387                         <executions>
388                             <!-- Assembly execution for aggregating gh-pages -->
389                             <execution>
390                                 <id>assemble-static-gh-pages</id>
391                                 <phase>compile</phase>
392                                 <inherited>false</inherited>
393                                 <goals>
394                                     <goal>single</goal>
395                                 </goals>
396                                 <configuration>
397                                     <descriptors>
398                                         <descriptor>src/main/assembly/assemble-gh-pages.xml</descriptor>
399                                     </descriptors>
400                                 </configuration>
401                             </execution>
402                             <!-- Filter README -->
403                             <execution>
404                                 <id>assemble-readme</id>
405                                 <phase>compile</phase>
406                                 <inherited>true</inherited>
407                                 <goals>
408                                     <goal>single</goal>
409                                 </goals>
410                                 <configuration>
411                                     <descriptors>
412                                         <descriptor>src/main/assembly/assemble-readme.xml</descriptor>
413                                     </descriptors>
414                                 </configuration>
415                             </execution>
416                         </executions>
417                     </plugin>
418                     <plugin>
419                         <groupId>org.apache.maven.plugins</groupId>
420                         <artifactId>maven-site-plugin</artifactId>
421                         <version>${site.version}</version>
422                         <inherited>true</inherited>
423                         <executions>
424                             <execution>
425                                 <id>site-gen</id>
426                                 <phase>prepare-package</phase>
427                                 <inherited>true</inherited>
428                                 <goals>
429                                     <goal>site</goal>
430                                 </goals>
431                             </execution>
432                         </executions>
433                     </plugin>
434                 </plugins>
435             </build>
436         </profile>
437     </profiles>
438     <modules>
439         <module>smart-hibernate-abstract-dao</module>
440         <module>smart-abstract-dao</module>
441         <module>smart-domain</module>
442         <module>smart-cache</module>
443         <module>smart-dao-search</module>
444         <module>smart-version</module>
445         <module>smart-dao-queryparam</module>
446         <module>smart-rs</module>
447         <module>docs</module>
448         <module>smart-exim</module>
449     </modules>
450     <properties>
451         <commons-lang.version>2.3</commons-lang.version>
452         <smart-util.version>0.2-SNAPSHOT</smart-util.version>
453         <jgit.version>0.4-SNAPSHOT</jgit.version>
454         <scm.version>1.3-SNAPSHOT</scm.version>
455         <jersey.version>1.0.3</jersey.version>
456         <changelog.version>2.2-SNAPSHOT</changelog.version>
457         <plexus-utils.version>1.5.6</plexus-utils.version>
458         <asm.version>3.1</asm.version>
459         <last.release.tag>0.3</last.release.tag>
460         <antrun.version>1.2</antrun.version>
461         <junit.version>3.8.1</junit.version>
462         <wagon-svn.version>1.8</wagon-svn.version>
463         <wagon-ftp.version>1.0-alpha-6</wagon-ftp.version>
464         <xml-plugin.version>1.0-beta-2</xml-plugin.version>
465         <src.version>2.0.4</src.version>
466         <compiler.version>2.0.2</compiler.version>
467         <javadoc.version>2.5</javadoc.version>
468         <release.version>2.0-beta-8</release.version>
469         <javac.src.version>1.5</javac.src.version>
470         <javac.target.version>1.5</javac.target.version>
471         <jaxrs.version>1.0</jaxrs.version>
472         <cobertura.version>2.2</cobertura.version>
473         <site.version>2.0-beta-7</site.version>
474         <assembly.version>2.2-beta-2</assembly.version>
475         <jar.version>2.2</jar.version>
476         <jmock.version>2.1.0</jmock.version>
477         <ehcache.version>1.5.0</ehcache.version>
478         <compass.version>2.1.0</compass.version>
479         <spring.version>2.5.4</spring.version>
480         <spring.hibernate.version>2.0.8</spring.hibernate.version>
481         <hibernate.version>3.2.5.ga</hibernate.version>
482         <c3p0.version>0.9.1.2</c3p0.version>
483         <derby.version>10.4.2.0</derby.version>
484         <cglib.version>2.1_3</cglib.version>
485         <surefire-report.version>2.4.2</surefire-report.version>
486         <findbugs.version>2.0</findbugs.version>
487         <dom4j.version>1.6.1</dom4j.version>
488         <ant-contrib.version>1.0b3</ant-contrib.version>
489         <gh-pages.branch>gh-pages</gh-pages.branch>
490     </properties>
491 </project>