785176e8a763950995ec64401b23e8db5afb5996
[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
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>single-feature-parent</artifactId>
14     <version>10.0.2</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.transportpce</groupId>
19   <artifactId>odl-transportpce-dmaap-client</artifactId>
20   <version>5.0.0-SNAPSHOT</version>
21   <packaging>feature</packaging>
22   <name>OpenDaylight :: transportpce :: dmaap-client</name>
23
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
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.transportpce</groupId>
32       <artifactId>odl-transportpce</artifactId>
33       <version>${project.version}</version>
34       <classifier>features</classifier>
35       <type>xml</type>
36       <exclusions>
37         <exclusion>
38           <groupId>org.glassfish.jersey.inject</groupId>
39           <artifactId>jersey-hk2</artifactId>
40         </exclusion>
41       </exclusions>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.transportpce</groupId>
45       <artifactId>transportpce-dmaap-client</artifactId>
46       <version>${project.version}</version>
47       <exclusions>
48         <exclusion>
49           <groupId>org.glassfish.jersey.inject</groupId>
50           <artifactId>jersey-hk2</artifactId>
51         </exclusion>
52       </exclusions>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.codehaus.mojo</groupId>
60         <artifactId>build-helper-maven-plugin</artifactId>
61         <executions>
62           <execution>
63             <id>attach-dmaap-artifact</id>
64             <phase>test</phase>
65             <goals>
66               <goal>attach-artifact</goal>
67             </goals>
68             <configuration>
69               <artifacts>
70                 <artifact>
71                   <file>${basedir}/src/main/resources/org.opendaylight.transportpce.dmaap.cfg</file>
72                   <type>cfg</type>
73                   <classifier>config</classifier>
74                 </artifact>
75               </artifacts>
76             </configuration>
77           </execution>
78         </executions>
79       </plugin>
80     </plugins>
81   </build>
82 </project>