Add a class visitor that checks for specified immediate parent pattern
[smart-util.git] / pom.xml
blobc657b2bf1f33bc92b829c01c07c78c9770eddb14
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" 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-util</artifactId>
26     <packaging>pom</packaging>
27     <version>0.2-SNAPSHOT</version>
28     <name>smart-util</name>
29     <inceptionYear>2009</inceptionYear>
30     <description>
31         This project basically aims to create Utility libraries for wide range
32         of use.
33     </description>
34     <url>http://code.google.com/p/smart-util/</url>
35     <organization>
36         <name>Smart IT Engineering</name>
37         <url>http://www.smartitengineering.com</url>
38     </organization>
39     <issueManagement>
40         <system>Google Code Issue Tracker</system>
41         <url>http://code.google.com/p/smart-util/issues/</url>
42     </issueManagement>
43     <mailingLists>
44         <mailingList>
45             <name>Mailing List</name>
46             <archive>http://groups.google.com/group/smart-util</archive>
47             <post>smart-util@googlegroups.com</post>
48         </mailingList>
49     </mailingLists>
50     <licenses>
51         <license>
52             <name>LGPL v3</name>
53             <distribution>repo and manual</distribution>
54             <url>http://www.gnu.org/licenses/lgpl.html</url>
55         </license>
56     </licenses>
57     <developers>
58         <developer>
59             <id>imyousuf</id>
60             <name>Imran M Yousuf</name>
61             <email>imyousuf@smartitengineering.com</email>
62             <organization>Smart IT Engineering</organization>
63             <timezone>GMT +0600</timezone>
64             <roles>
65                 <role>Project Owner</role>
66                 <role>Developer</role>
67                 <role>Maintainer</role>
68             </roles>
69         </developer>
70     </developers>
71     <scm>
72         <connection>scm:git:git://github.com/imyousuf/smart-util.git</connection>
73     </scm>
74     <distributionManagement>
75         <!-- use the following if you're not using a snapshot version. -->
76         <repository>
77             <id>java.net-m2-repository</id>
78             <url>java-net:/maven2-repository/trunk/repository/</url>
79         </repository>
80         <!-- use the following if you ARE using a snapshot version. -->
81         <snapshotRepository>
82             <id>free-ftp-snapshot-repo</id>
83             <name>My FTP snapshot</name>
84             <url>ftp://imyousuf.100webspace.net/imyousuf.100webspace.net/maven-repo/snapshot</url>
85         </snapshotRepository>
86     </distributionManagement>
87     <dependencies>
88         <dependency>
89             <groupId>junit</groupId>
90             <artifactId>junit</artifactId>
91             <version>${junit.version}</version>
92             <scope>test</scope>
93         </dependency>
94     </dependencies>
95     <build>
96         <plugins>
97             <plugin>
98                 <groupId>org.apache.maven.plugins</groupId>
99                 <artifactId>maven-release-plugin</artifactId>
100                 <version>${release.version}</version>
101             </plugin>
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-scm-plugin</artifactId>
105                 <version>${scm.version}</version>
106             </plugin>
107             <plugin>
108                 <artifactId>maven-surefire-plugin</artifactId>
109                 <version>${surefire.version}</version>
110             </plugin>
111         </plugins>
112         <extensions>
113             <extension>
114                 <groupId>org.jvnet.wagon-svn</groupId>
115                 <artifactId>wagon-svn</artifactId>
116                 <version>${wagon.svn.version}</version>
117             </extension>
118             <extension>
119                 <groupId>org.apache.maven.wagon</groupId>
120                 <artifactId>wagon-ftp</artifactId>
121                 <version>${wagon.ftp.version}</version>
122             </extension>
123         </extensions>
124     </build>
125     <modules>
126         <module>smart-bean-util</module>
127         <module>simple-util</module>
128     </modules>
129     <properties>
130         <wagon.ftp.version>1.0-alpha-6</wagon.ftp.version>
131         <wagon.svn.version>1.8</wagon.svn.version>
132         <scm.version>1.1</scm.version>
133         <release.version>2.0-beta-8</release.version>
134         <junit.version>3.8.1</junit.version>
135         <source.version>2.0.4</source.version>
136         <javadoc.version>2.3</javadoc.version>
137         <compiler.version>2.0.2</compiler.version>
138         <lang.version>2.3</lang.version>
139         <surefire.version>2.4.3</surefire.version>
140         <asm.version>3.1</asm.version>
141         <jmock.version>2.1.0</jmock.version>
142     </properties>
143 </project>