Merge "Fix OpenRoadmInterface710 portmapping revision"
[transportpce.git] / features / odl-transportpce-dmaap-client / 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10     <parent>
11         <groupId>org.opendaylight.odlparent</groupId>
12         <artifactId>single-feature-parent</artifactId>
13         <version>8.1.0</version>
14         <relativePath />
15     </parent>
16     <groupId>org.opendaylight.transportpce</groupId>
17     <artifactId>odl-transportpce-dmaap-client</artifactId>
18     <version>4.0.0-SNAPSHOT</version>
19     <packaging>feature</packaging>
20
21     <name>OpenDaylight :: transportpce :: dmaap-client</name>
22     <properties>
23     <!-- skipped because we are using config file as artifact and it is not installed before running test -->
24         <skip.karaf.featureTest>true</skip.karaf.featureTest>
25     </properties>
26     <dependencies>
27         <dependency>
28             <groupId>org.opendaylight.transportpce</groupId>
29             <artifactId>odl-transportpce</artifactId>
30             <version>${project.version}</version>
31             <classifier>features</classifier>
32             <type>xml</type>
33             <exclusions>
34                 <exclusion>
35                     <groupId>org.glassfish.jersey.inject</groupId>
36                     <artifactId>jersey-hk2</artifactId>
37                 </exclusion>
38             </exclusions>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.transportpce</groupId>
42             <artifactId>transportpce-dmaap-client</artifactId>
43             <version>${project.version}</version>
44             <exclusions>
45                 <exclusion>
46                     <groupId>org.glassfish.jersey.inject</groupId>
47                     <artifactId>jersey-hk2</artifactId>
48                 </exclusion>
49             </exclusions>
50         </dependency>
51     </dependencies>
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.codehaus.mojo</groupId>
56                 <artifactId>build-helper-maven-plugin</artifactId>
57                 <executions>
58                     <execution>
59                         <id>attach-dmaap-artifact</id>
60                         <phase>test</phase>
61                         <goals>
62                             <goal>attach-artifact</goal>
63                         </goals>
64                         <configuration>
65                             <artifacts>
66                                 <artifact>
67                                     <file>${basedir}/src/main/resources/org.opendaylight.transportpce.dmaap.cfg</file>
68                                     <type>cfg</type>
69                                     <classifier>config</classifier>
70                                 </artifact>
71                             </artifacts>
72                         </configuration>
73                     </execution>
74                 </executions>
75             </plugin>
76         </plugins>
77     </build>
78 </project>