Release ccsdk/sli/adaptors
[ccsdk/sli/adaptors.git] / message-router / publisher / sample.client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4
5         <parent>
6                 <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId>
7                 <artifactId>publisher.aggregate</artifactId>
8                 <version>0.5.3</version>
9         </parent>
10
11         <artifactId>sample.client</artifactId>
12         <packaging>bundle</packaging>
13
14         <dependencies>
15                 <dependency>
16                         <groupId>${project.groupId}</groupId>
17                         <artifactId>publisher.api</artifactId>
18                         <version>${project.version}</version>
19                 </dependency>
20                 <dependency>
21                         <groupId>org.slf4j</groupId>
22                         <artifactId>slf4j-api</artifactId>
23                 </dependency>
24         </dependencies>
25
26         <build>
27                 <plugins>
28                         <plugin>
29                                 <groupId>org.apache.felix</groupId>
30                                 <artifactId>maven-bundle-plugin</artifactId>
31                                 <configuration>
32                                         <instructions>
33                                                 <Private-Package>${project.groupId}.publisher.client.impl</Private-Package>
34                                         </instructions>
35                                 </configuration>
36                         </plugin>
37                 </plugins>
38         </build>
39 </project>