Add mailing list un/subscribe emails
[smart-dao.git] / pom.xml
blobaf3189cca21e233501671f9f42ba727bb5c9328a
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-changelog-plugin</artifactId>
239                 <version>${changelog.version}</version>
240                 <configuration>
241                     <type>tag</type>
242                     <tags>
243                         <tag implementation="java.lang.String">${last.release.tag}
244                         </tag>
245                         <tag implementation="java.lang.String">HEAD
246                         </tag>
247                     </tags>
248                 </configuration>
249             </plugin>
250         </plugins>
251     </reporting>
252     <profiles>
253         <profile>
254             <id>build-ext</id>
255             <activation>
256                 <property>
257                     <name>build.complete</name>
258                     <value>true</value>
259                 </property>
260             </activation>
261             <build>
262                 <plugins>
263                     <plugin>
264                         <groupId>org.apache.maven.plugins</groupId>
265                         <artifactId>maven-changelog-plugin</artifactId>
266                         <version>${changelog.version}</version>
267                         <inherited>false</inherited>
268                         <dependencies>
269                             <dependency>
270                                 <groupId>org.codehaus.plexus</groupId>
271                                 <artifactId>plexus-utils</artifactId>
272                                 <version>${plexus-utils.version}</version>
273                             </dependency>
274                             <dependency>
275                                 <groupId>org.apache.maven.scm</groupId>
276                                 <artifactId>maven-scm-provider-gitexe</artifactId>
277                                 <version>${scm.version}</version>
278                             </dependency>
279                         </dependencies>
280                         <configuration>
281                             <outputXML>./target/change/changes.xml</outputXML>
282                         </configuration>
283                         <executions>
284                             <execution>
285                                 <id>attach-changelog</id>
286                                 <phase>generate-sources</phase>
287                                 <inherited>false</inherited>
288                                 <goals>
289                                     <goal>changelog</goal>
290                                 </goals>
291                             </execution>
292                         </executions>
293                     </plugin>
294                     <plugin>
295                         <groupId>org.codehaus.mojo</groupId>
296                         <artifactId>xml-maven-plugin</artifactId>
297                         <version>${xml-plugin.version}</version>
298                         <inherited>false</inherited>
299                         <executions>
300                             <execution>
301                                 <id>generate-changes</id>
302                                 <phase>generate-resources</phase>
303                                 <inherited>false</inherited>
304                                 <goals>
305                                     <goal>transform</goal>
306                                 </goals>
307                             </execution>
308                         </executions>
309                         <configuration>
310                             <transformationSets>
311                                 <transformationSet>
312                                     <dir>./target/change</dir>
313                                     <stylesheet>src/main/xsl/changes.xsl</stylesheet>
314                                 </transformationSet>
315                             </transformationSets>
316                         </configuration>
317                     </plugin>
318                     <plugin>
319                         <groupId>org.apache.maven.plugins</groupId>
320                         <artifactId>maven-antrun-plugin</artifactId>
321                         <version>${antrun.version}</version>
322                         <inherited>false</inherited>
323                         <executions>
324                             <execution>
325                                 <id>rename-changes</id>
326                                 <phase>generate-resources</phase>
327                                 <inherited>false</inherited>
328                                 <goals>
329                                     <goal>run</goal>
330                                 </goals>
331                                 <configuration>
332                                     <tasks>
333                                         <move file="target/generated-resources/xml/xslt/changes.xml" tofile="target/generated-resources/xml/xslt/changes-${version}.html" verbose="true"/>
334                                     </tasks>
335                                 </configuration>
336                             </execution>
337                         </executions>
338                     </plugin>
339                     <plugin>
340                         <groupId>org.apache.maven.plugins</groupId>
341                         <artifactId>maven-assembly-plugin</artifactId>
342                         <version>${assembly.version}</version>
343                         <inherited>true</inherited>
344                         <executions>
345                             <!-- Assembly execution for aggregating gh-pages -->
346                             <execution>
347                                 <id>assemble-static-gh-pages</id>
348                                 <phase>compile</phase>
349                                 <inherited>false</inherited>
350                                 <goals>
351                                     <goal>single</goal>
352                                 </goals>
353                                 <configuration>
354                                     <descriptors>
355                                         <descriptor>src/main/assembly/assemble-gh-pages.xml</descriptor>
356                                     </descriptors>
357                                 </configuration>
358                             </execution>
359                             <!-- Filter README -->
360                             <execution>
361                                 <id>assemble-readme</id>
362                                 <phase>compile</phase>
363                                 <inherited>true</inherited>
364                                 <goals>
365                                     <goal>single</goal>
366                                 </goals>
367                                 <configuration>
368                                     <descriptors>
369                                         <descriptor>src/main/assembly/assemble-readme.xml</descriptor>
370                                     </descriptors>
371                                 </configuration>
372                             </execution>
373                         </executions>
374                     </plugin>
375                     <plugin>
376                         <groupId>org.apache.maven.plugins</groupId>
377                         <artifactId>maven-site-plugin</artifactId>
378                         <version>${site.version}</version>
379                         <inherited>true</inherited>
380                         <executions>
381                             <execution>
382                                 <id>site-gen</id>
383                                 <phase>prepare-package</phase>
384                                 <inherited>true</inherited>
385                                 <goals>
386                                     <goal>site</goal>
387                                 </goals>
388                             </execution>
389                         </executions>
390                     </plugin>
391                 </plugins>
392             </build>
393         </profile>
394     </profiles>
395     <modules>
396         <module>smart-hibernate-abstract-dao</module>
397         <module>smart-abstract-dao</module>
398         <module>smart-domain</module>
399         <module>smart-cache</module>
400         <module>smart-dao-search</module>
401         <module>smart-version</module>
402         <module>smart-dao-queryparam</module>
403         <module>smart-rs</module>
404         <module>docs</module>
405     </modules>
406     <properties>
407         <commons-lang.version>2.3</commons-lang.version>
408         <smart-util.version>0.2-SNAPSHOT</smart-util.version>
409         <jgit.version>0.4-SNAPSHOT</jgit.version>
410         <scm.version>1.3-SNAPSHOT</scm.version>
411         <jersey.version>1.0.3-SNAPSHOT</jersey.version>
412         <changelog.version>2.2-SNAPSHOT</changelog.version>
413         <plexus-utils.version>1.5.6</plexus-utils.version>
414         <asm.version>3.1</asm.version>
415         <last.release.tag>0.3</last.release.tag>
416         <antrun.version>1.2</antrun.version>
417         <junit.version>3.8.1</junit.version>
418         <wagon-svn.version>1.8</wagon-svn.version>
419         <wagon-ftp.version>1.0-alpha-6</wagon-ftp.version>
420         <xml-plugin.version>1.0-beta-2</xml-plugin.version>
421         <src.version>2.0.4</src.version>
422         <compiler.version>2.0.2</compiler.version>
423         <javadoc.version>2.5</javadoc.version>
424         <release.version>2.0-beta-8</release.version>
425         <javac.src.version>1.5</javac.src.version>
426         <javac.target.version>1.5</javac.target.version>
427         <jaxrs.version>1.0</jaxrs.version>
428         <cobertura.version>2.2</cobertura.version>
429         <site.version>2.0-beta-7</site.version>
430         <assembly.version>2.2-beta-2</assembly.version>
431         <jar.version>2.2</jar.version>
432         <jmock.version>2.1.0</jmock.version>
433         <ehcache.version>1.5.0</ehcache.version>
434         <compass.version>2.1.0</compass.version>
435         <spring.version>2.5.4</spring.version>
436         <spring.hibernate.version>2.0.8</spring.hibernate.version>
437         <hibernate.version>3.2.5.ga</hibernate.version>
438         <c3p0.version>0.9.1.2</c3p0.version>
439         <derby.version>10.4.2.0</derby.version>
440         <cglib.version>2.1_3</cglib.version>
441     </properties>
442 </project>