Fix FindBug reported bugs as appropriate for the smart-exim module
[smart-dao.git] / smart-version / smart-version-jgit-impl / pom.xml
blob70b7fab6e78f9316093aaa208b44554b7a19911d
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  *
22 -->
23 <project>
24     <parent>
25         <artifactId>smart-version</artifactId>
26         <groupId>com.smartitengineering</groupId>
27         <version>0.4-SNAPSHOT</version>
28     </parent>
29     <modelVersion>4.0.0</modelVersion>
30     <groupId>com.smartitengineering.smart-version</groupId>
31     <artifactId>smart-version-jgit-impl</artifactId>
32     <name>smart-version-jgit-impl</name>
33     <version>0.4-SNAPSHOT</version>
34     <packaging>jar</packaging>
35     <description>
36         This module implements a JGit based implementation of the version API
37         and also provides SPIs a Meta Service Factory for storing revision info
38         in database for easier and faster retrieval of revisions.
39     </description>
40     <build>
41         <plugins>
42             <plugin>
43                 <groupId>org.apache.maven.plugins</groupId>
44                 <artifactId>maven-assembly-plugin</artifactId>
45                 <version>${assembly.version}</version>
46             </plugin>
47         </plugins>
48     </build>
49     <dependencies>
50         <dependency>
51             <groupId>junit</groupId>
52             <artifactId>junit</artifactId>
53             <version>${junit.version}</version>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>com.smartitengineering</groupId>
58             <artifactId>smart-dao-queryparam</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>com.smartitengineering.smart-version</groupId>
63             <artifactId>smart-version-api</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>com.smartitengineering</groupId>
68             <artifactId>smart-domain</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>com.smartitengineering</groupId>
73             <artifactId>smart-abstract-dao</artifactId>
74             <version>${project.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>com.smartitengineering</groupId>
78             <artifactId>smart-hibernate-abstract-dao</artifactId>
79             <version>${project.version}</version>
80             <exclusions>
81                 <exclusion>
82                     <groupId>asm</groupId>
83                     <artifactId>asm</artifactId>
84                 </exclusion>
85                 <exclusion>
86                     <groupId>asm</groupId>
87                     <artifactId>asm-attrs</artifactId>
88                 </exclusion>
89                 <exclusion>
90                     <groupId>cglib</groupId>
91                     <artifactId>cglib</artifactId>
92                 </exclusion>
93             </exclusions>
94         </dependency>
95         <dependency>
96             <groupId>cglib</groupId>
97             <artifactId>cglib-nodep</artifactId>
98             <version>${cglib.version}</version>
99         </dependency>
100         <dependency>
101             <groupId>com.smartitengineering.smart-util</groupId>
102             <artifactId>smart-bean-util</artifactId>
103             <version>${smart-util.version}</version>
104         </dependency>
105         <dependency>
106             <groupId>org.spearce</groupId>
107             <artifactId>jgit</artifactId>
108             <version>${jgit.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>c3p0</groupId>
112             <artifactId>c3p0</artifactId>
113             <version>${c3p0.version}</version>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.apache.derby</groupId>
118             <artifactId>derby</artifactId>
119             <version>${derby.version}</version>
120             <scope>test</scope>
121         </dependency>
122     </dependencies>
123 </project>