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