Bump versions to 12.0.7-SNAPSHOT
[odlparent.git] / features / odl-karaf-feat-jdbc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016 Red Hat, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>single-feature-parent</artifactId>
17         <version>12.0.7-SNAPSHOT</version>
18         <relativePath>../../single-feature-parent</relativePath>
19     </parent>
20
21     <artifactId>odl-karaf-feat-jdbc</artifactId>
22     <name>ODL :: odlparent :: ${project.artifactId}</name>
23     <packaging>kar</packaging>
24
25     <properties>
26         <pax.jdbc.version>1.5.5</pax.jdbc.version>
27     </properties>
28
29     <dependencies>
30         <dependency>
31             <groupId>org.ops4j.pax.jdbc</groupId>
32             <artifactId>pax-jdbc-features</artifactId>
33             <version>${pax.jdbc.version}</version>
34             <classifier>features</classifier>
35             <type>xml</type>
36             <scope>runtime</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.osgi</groupId>
40             <artifactId>org.osgi.service.jdbc</artifactId>
41             <scope>compile</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.apache.karaf.jdbc</groupId>
45             <artifactId>org.apache.karaf.jdbc.core</artifactId>
46             <scope>compile</scope>
47             <exclusions>
48                 <exclusion>
49                     <groupId>org.apache.felix</groupId>
50                     <artifactId>org.apache.felix.utils</artifactId>
51                 </exclusion>
52                 <exclusion>
53                     <groupId>org.apache.karaf</groupId>
54                     <artifactId>org.apache.karaf.util</artifactId>
55                 </exclusion>
56                 <exclusion>
57                     <groupId>org.apache.karaf.jaas</groupId>
58                     <artifactId>org.apache.karaf.jaas.boot</artifactId>
59                 </exclusion>
60             </exclusions>
61         </dependency>
62     </dependencies>
63
64     <build>
65         <resources>
66             <resource>
67                 <directory>src/main/feature</directory>
68                 <filtering>true</filtering>
69             </resource>
70         </resources>
71     </build>
72
73 </project>