Add capability to read from entry's content
[smart-util.git] / pom.xml
blobbf19513910391a8e604d13c21575379ba4f18f44
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  *
4  * This is a utility project for wide range of applications
5  *
6  * Copyright (C) 2008  Imran M Yousuf (imyousuf@smartitengineering.com)
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 3 of the License, or (at your option) any later version.
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  *
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24   <modelVersion>4.0.0</modelVersion>
25   <parent>
26     <groupId>com.smartitengineering</groupId>
27     <artifactId>smart-core</artifactId>
28     <version>0.1-SNAPSHOT</version>
29   </parent>
30   <groupId>com.smartitengineering</groupId>
31   <artifactId>smart-util</artifactId>
32   <packaging>pom</packaging>
33   <version>0.2-SNAPSHOT</version>
34   <name>smart-util</name>
35   <inceptionYear>2009</inceptionYear>
36   <description>
37     This project basically aims to create Utility libraries for wide range
38     of use.
39   </description>
40   <url>http://code.google.com/p/smart-util/</url>
41   <organization>
42     <name>Smart IT Engineering</name>
43     <url>http://www.smartitengineering.com</url>
44   </organization>
45   <issueManagement>
46     <system>Google Code Issue Tracker</system>
47     <url>http://code.google.com/p/smart-util/issues/</url>
48   </issueManagement>
49   <mailingLists>
50     <mailingList>
51       <name>Mailing List</name>
52       <archive>http://groups.google.com/group/smart-util</archive>
53       <post>smart-util@googlegroups.com</post>
54     </mailingList>
55   </mailingLists>
56   <licenses>
57     <license>
58       <name>LGPL v3</name>
59       <distribution>repo and manual</distribution>
60       <url>http://www.gnu.org/licenses/lgpl.html</url>
61     </license>
62   </licenses>
63   <developers>
64     <developer>
65       <id>imyousuf</id>
66       <name>Imran M Yousuf</name>
67       <email>imyousuf@smartitengineering.com</email>
68       <organization>Smart IT Engineering</organization>
69       <timezone>GMT +0600</timezone>
70       <roles>
71         <role>Project Owner</role>
72         <role>Developer</role>
73         <role>Maintainer</role>
74       </roles>
75     </developer>
76   </developers>
77   <scm>
78     <connection>scm:git:git://github.com/imyousuf/smart-util.git</connection>
79   </scm>
80   <distributionManagement>
81     <!-- deploy site here -->
82     <site>
83       <id>smartit-googlecode</id>
84       <name>Smart IT Engineering GoogleCode repository</name>
85       <url>svn:https://imyousuf@smart-it.googlecode.com/svn/maven2/site/util</url>
86     </site>
87   </distributionManagement>
88   <build>
89     <pluginManagement>
90       <plugins>
91         <plugin>
92           <groupId>org.apache.maven.plugins</groupId>
93           <artifactId>maven-surefire-plugin</artifactId>
94           <inherited>true</inherited>
95           <executions>
96             <execution>
97               <id>integration-tests</id>
98               <phase>integration-test</phase>
99               <inherited>true</inherited>
100               <goals>
101                 <goal>test</goal>
102               </goals>
103               <configuration>
104                 <includes>
105                   <include>**/*IT*.java</include>
106                 </includes>
107               </configuration>
108             </execution>
109           </executions>
110         </plugin>
111         <plugin>
112           <groupId>org.apache.maven.plugins</groupId>
113           <artifactId>maven-compiler-plugin</artifactId>
114           <inherited>true</inherited>
115           <configuration>
116             <source>1.5</source>
117             <target>1.5</target>
118           </configuration>
119         </plugin>
120         <plugin>
121           <groupId>org.apache.maven.plugins</groupId>
122           <artifactId>maven-javadoc-plugin</artifactId>
123           <inherited>true</inherited>
124           <configuration>
125             <attach>true</attach>
126           </configuration>
127           <executions>
128             <execution>
129               <id>gen-javadoc</id>
130               <phase>install</phase>
131               <inherited>true</inherited>
132               <goals>
133                 <goal>jar</goal>
134               </goals>
135             </execution>
136           </executions>
137         </plugin>
138         <plugin>
139           <groupId>org.apache.maven.plugins</groupId>
140           <artifactId>maven-source-plugin</artifactId>
141           <inherited>true</inherited>
142           <configuration>
143             <attach>true</attach>
144           </configuration>
145           <executions>
146             <execution>
147               <id>attach-sources</id>
148               <phase>verify</phase>
149               <inherited>true</inherited>
150               <goals>
151                 <goal>jar</goal>
152               </goals>
153             </execution>
154           </executions>
155         </plugin>
156       </plugins>
157     </pluginManagement>
158     <plugins>
159       <plugin>
160         <groupId>org.apache.maven.plugins</groupId>
161         <artifactId>maven-source-plugin</artifactId>
162       </plugin>
163       <plugin>
164         <groupId>org.apache.maven.plugins</groupId>
165         <artifactId>maven-javadoc-plugin</artifactId>
166       </plugin>
167       <plugin>
168         <groupId>org.apache.maven.plugins</groupId>
169         <artifactId>maven-compiler-plugin</artifactId>
170       </plugin>
171       <plugin>
172         <groupId>org.apache.maven.plugins</groupId>
173         <artifactId>maven-surefire-plugin</artifactId>
174       </plugin>
175     </plugins>
176   </build>
177   <modules>
178     <module>smart-bean-util</module>
179     <module>simple-util</module>
180     <module>smart-bean-spring-util</module>
181     <module>rest</module>
182   </modules>
183 </project>