blob: 694af1f4a65952f51b7b35b45330ad1c95c272eb [file] [log] [blame]
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +00001<?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>
Timoney, Dan (dt5972)ee0ce402019-03-19 09:12:23 -04006 <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +00007 <artifactId>publisher.aggregate</artifactId>
Dan Timoney2173e3e2020-11-25 14:51:48 -05008 <version>1.1.1-SNAPSHOT</version>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +00009 </parent>
10
11 <artifactId>sample.client</artifactId>
12 <packaging>bundle</packaging>
13
14 <dependencies>
15 <dependency>
Timoney, Dan (dt5972)ee0ce402019-03-19 09:12:23 -040016 <groupId>${project.groupId}</groupId>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +000017 <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>
Timoney, Dan (dt5972)ee0ce402019-03-19 09:12:23 -040033 <Private-Package>${project.groupId}.publisher.client.impl</Private-Package>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +000034 </instructions>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
39</project>