Merge "Fix a few compilation warnings"
[transportpce.git] / features / odl-transportpce-nbinotifications / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright © 2021 Orange and others. All rights reserved. This program
3     and the accompanying materials are made available under the terms of the
4     Eclipse Public License v1.0 which accompanies this distribution, and is available
5     at http://www.eclipse.org/legal/epl-v10.html INTERNAL -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0"
7     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>single-feature-parent</artifactId>
14         <version>8.1.0</version>
15         <relativePath />
16     </parent>
17
18     <groupId>org.opendaylight.transportpce</groupId>
19     <artifactId>odl-transportpce-nbinotifications</artifactId>
20     <version>4.0.0-SNAPSHOT</version>
21     <packaging>feature</packaging>
22
23     <name>OpenDaylight :: transportpce :: nbinotifications</name>
24     <properties>
25     <!-- skipped because we are using config file as artifact and it is not installed before running test -->
26         <skip.karaf.featureTest>true</skip.karaf.featureTest>
27     </properties>
28     <dependencies>
29         <dependency>
30             <groupId>org.opendaylight.transportpce</groupId>
31             <artifactId>odl-transportpce</artifactId>
32             <version>${project.version}</version>
33             <classifier>features</classifier>
34             <type>xml</type>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>transportpce-nbinotifications</artifactId>
39             <version>${project.version}</version>
40         </dependency>
41     </dependencies>
42     <build>
43         <plugins>
44             <plugin>
45                 <groupId>org.codehaus.mojo</groupId>
46                 <artifactId>build-helper-maven-plugin</artifactId>
47                 <executions>
48                     <execution>
49                         <id>attach-dmaap-artifact</id>
50                         <phase>package</phase>
51                         <goals>
52                             <goal>attach-artifact</goal>
53                         </goals>
54                         <configuration>
55                             <artifacts>
56                                 <artifact>
57                                     <file>${basedir}/src/main/resources/org.opendaylight.transportpce.nbinotifications.cfg</file>
58                                     <type>cfg</type>
59                                     <classifier>config</classifier>
60                                 </artifact>
61                             </artifacts>
62                         </configuration>
63                     </execution>
64                 </executions>
65             </plugin>
66         </plugins>
67     </build>
68 </project>