Merge "Corrections to developer Guide for Ar"
[transportpce.git] / features / odl-transportpce-inventory / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright © 2016 Orange and others. All rights reserved. This program and the accompanying materials
3     are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
4     and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL -->
5 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
7   <modelVersion>4.0.0</modelVersion>
8
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>single-feature-parent</artifactId>
12     <version>12.0.3</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.transportpce</groupId>
17   <artifactId>odl-transportpce-inventory</artifactId>
18   <version>7.0.1-SNAPSHOT</version>
19   <packaging>feature</packaging>
20   <name>OpenDaylight :: transportpce :: Inventory</name>
21
22   <properties>
23     <mdsal.version>11.0.7</mdsal.version>
24     <netconf.version>5.0.4</netconf.version>
25     <transportpce.models.version>18.0.1</transportpce.models.version>
26     <transportpce.db.host>localhost:3306</transportpce.db.host>
27     <transportpce.db.database>transportpce</transportpce.db.database>
28     <transportpce.db.username>root</transportpce.db.username>
29     <transportpce.db.password>root</transportpce.db.password>
30     <transporpce.device.backup.folder>data/transportpce/devicebackup</transporpce.device.backup.folder>
31     <transporpce.device.backup.prefix></transporpce.device.backup.prefix>
32     <transporpce.device.backup.period>600</transporpce.device.backup.period>
33     <!-- skipping single feature test because DataSource is not available in Pax4j (H2 possible workaround) -->
34     <skip.karaf.featureTest>false</skip.karaf.featureTest>
35   </properties>
36
37   <dependencyManagement>
38     <dependencies>
39       <dependency>
40         <groupId>org.opendaylight.mdsal</groupId>
41         <artifactId>mdsal-artifacts</artifactId>
42         <version>${mdsal.version}</version>
43         <scope>import</scope>
44         <type>pom</type>
45       </dependency>
46       <dependency>
47         <groupId>org.opendaylight.netconf</groupId>
48         <artifactId>netconf-artifacts</artifactId>
49         <version>${netconf.version}</version>
50         <type>pom</type>
51         <scope>import</scope>
52       </dependency>
53     </dependencies>
54   </dependencyManagement>
55
56   <dependencies>
57     <dependency>
58       <groupId>org.opendaylight.transportpce</groupId>
59       <artifactId>odl-transportpce</artifactId>
60       <version>${project.version}</version>
61       <classifier>features</classifier>
62       <type>xml</type>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.mdsal</groupId>
66       <artifactId>odl-mdsal-binding-base</artifactId>
67       <classifier>features</classifier>
68       <type>xml</type>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.netconf</groupId>
72       <artifactId>odl-netconf-util</artifactId>
73       <classifier>features</classifier>
74       <type>xml</type>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.netconf</groupId>
78       <artifactId>odl-netconf-mapping-api</artifactId>
79       <classifier>features</classifier>
80       <type>xml</type>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.transportpce</groupId>
84       <artifactId>transportpce-inventory</artifactId>
85       <version>${project.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.transportpce</groupId>
89       <artifactId>transportpce-inventory</artifactId>
90       <version>${project.version}</version>
91       <type>cfg</type>
92       <classifier>config</classifier>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.transportpce</groupId>
96       <artifactId>transportpce-inventory</artifactId>
97       <version>${project.version}</version>
98       <type>cfg</type>
99       <classifier>datasource</classifier>
100     </dependency>
101   </dependencies>
102 </project>