Bump dependencies to newer Sodium SR2 dev versions
[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>5.0.4</version>
13         <relativePath/>
14     </parent>
15
16     <groupId>org.opendaylight.transportpce</groupId>
17     <artifactId>odl-transportpce-inventory</artifactId>
18     <version>0.5.0-SNAPSHOT</version>
19     <packaging>feature</packaging>
20
21     <properties>
22         <transportpce.db.host>localhost:3306</transportpce.db.host>
23         <transportpce.db.database>transportpce</transportpce.db.database>
24         <transportpce.db.username>root</transportpce.db.username>
25         <transportpce.db.password>root</transportpce.db.password>
26         <transporpce.device.backup.folder>data/transportpce/devicebackup</transporpce.device.backup.folder>
27         <transporpce.device.backup.prefix></transporpce.device.backup.prefix>
28         <transporpce.device.backup.period>600</transporpce.device.backup.period>
29         <!-- skipping single feature test because DataSource is not available in Pax4j (H2 possible workaround) -->
30         <skip.karaf.featureTest>true</skip.karaf.featureTest>
31     </properties>
32
33     <name>OpenDaylight :: transportpce :: Inventory</name>
34     <dependencies>
35         <dependency>
36             <groupId>org.opendaylight.transportpce</groupId>
37             <artifactId>transportpce-inventory</artifactId>
38             <version>${project.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.transportpce</groupId>
42             <artifactId>odl-transportpce</artifactId>
43             <version>${project.version}</version>
44             <classifier>features</classifier>
45             <type>xml</type>
46         </dependency>
47     </dependencies>
48
49     <build>
50         <plugins>
51             <plugin>
52                 <artifactId>maven-resources-plugin</artifactId>
53                 <executions>
54                     <execution>
55                         <id>copy-resources</id>
56                         <phase>validate</phase>
57                         <goals>
58                             <goal>copy-resources</goal>
59                         </goals>
60                         <configuration>
61                             <outputDirectory>${basedir}/target/resources</outputDirectory>
62                             <resources>
63                                 <resource>
64                                     <directory>
65                                         src/main/resources
66                                     </directory>
67                                     <filtering>true</filtering>
68                                 </resource>
69                             </resources>
70                         </configuration>
71                     </execution>
72                 </executions>
73             </plugin>
74             <plugin>
75                 <groupId>org.codehaus.mojo</groupId>
76                 <artifactId>build-helper-maven-plugin</artifactId>
77                 <executions>
78                     <execution>
79                         <id>attach-db-artifact</id>
80                         <phase>package</phase>
81                         <goals>
82                             <goal>attach-artifact</goal>
83                         </goals>
84                         <configuration>
85                             <artifacts>
86                                 <artifact>
87                                     <file>target/resources/org.ops4j.datasource-transporpce.cfg</file>
88                                     <type>cfg</type>
89                                     <classifier>datasource</classifier>
90                                 </artifact>
91                                 <artifact>
92                                     <file>target/resources/org.opendaylight.transportpce.job.cfg</file>
93                                     <type>cfg</type>
94                                     <classifier>config</classifier>
95                                 </artifact>
96                             </artifacts>
97                         </configuration>
98                     </execution>
99                 </executions>
100             </plugin>
101         </plugins>
102     </build>
103 </project>