Update version number to maintenance release it was forgotten in the earlier commit
[smart-util.git] / smart-spring-util / pom.xml
blobfe934ae1aec96acf24335938a202bf567e2af34d
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     <parent>
24         <artifactId>smart-util</artifactId>
25         <groupId>com.smartitengineering</groupId>
26         <version>0.1.1-SNAPSHOT</version>
27     </parent>
28     <modelVersion>4.0.0</modelVersion>
29     <groupId>com.smartitengineering.smart-util</groupId>
30     <artifactId>smart-spring-util</artifactId>
31     <name>smart-spring-util</name>
32     <version>0.1.1-SNAPSHOT</version>
33     <dependencies>
34         <dependency>
35             <groupId>org.springframework</groupId>
36             <artifactId>spring-beans</artifactId>
37             <version>${spring.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>commons-lang</groupId>
41             <artifactId>commons-lang</artifactId>
42             <version>2.3</version>
43         </dependency>
44         <dependency>
45             <groupId>junit</groupId>
46             <artifactId>junit</artifactId>
47             <version>3.8.1</version>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.springframework</groupId>
52             <artifactId>spring-context</artifactId>
53             <version>${spring.version}</version>
54             <scope>test</scope>
55         </dependency>
56     </dependencies>
57     <build>
58         <plugins>
59             <plugin>
60                 <artifactId>maven-compiler-plugin</artifactId>
61                 <version>2.0.2</version>
62                 <configuration>
63                     <source>1.5</source>
64                     <target>1.5</target>
65                 </configuration>
66             </plugin>
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-javadoc-plugin</artifactId>
70                 <version>2.3</version>
71                 <configuration>
72                     <attach>true</attach>
73                 </configuration>
74                 <executions>
75                     <execution>
76                         <id>gen-javadoc</id>
77                         <phase>install</phase>
78                         <goals>
79                             <goal>jar</goal>
80                         </goals>
81                     </execution>
82                 </executions>
83             </plugin>
84             <plugin>
85                 <groupId>org.apache.maven.plugins</groupId>
86                 <artifactId>maven-source-plugin</artifactId>
87                 <version>2.0.4</version>
88                 <configuration>
89                     <attach>true</attach>
90                 </configuration>
91                 <executions>
92                     <execution>
93                         <id>attach-sources</id>
94                         <phase>verify</phase>
95                         <goals>
96                             <goal>jar</goal>
97                         </goals>
98                     </execution>
99                 </executions>
100             </plugin>
101         </plugins>
102     </build>
103     <properties>
104         <spring.version>2.5.6</spring.version>
105     </properties>
106 </project>