blob: 166589670b9e20bb35efea99b8a692edf11b91d0 [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">
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05003 <modelVersion>4.0.0</modelVersion>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +00004
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05005 <parent>
6 <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId>
7 <artifactId>publisher.aggregate</artifactId>
Dan Timoneyac0e0c92024-08-07 16:48:23 -04008 <version>1.9.0-SNAPSHOT</version>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05009 </parent>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +000010
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050011 <artifactId>sample.client</artifactId>
12 <packaging>bundle</packaging>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +000013
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050014 <name>ccsdk-sli-adaptors :: message-router :: publisher.${project.artifactId}</name>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +000015
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050016 <dependencies>
17 <dependency>
18 <groupId>${project.groupId}</groupId>
19 <artifactId>publisher.api</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>org.slf4j</groupId>
24 <artifactId>slf4j-api</artifactId>
25 </dependency>
26 </dependencies>
27
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.felix</groupId>
32 <artifactId>maven-bundle-plugin</artifactId>
33 <configuration>
34 <instructions>
35 <Private-Package>${project.groupId}.publisher.client.impl</Private-Package>
36 </instructions>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
Smokowski, Kevin (ks6305)8506f0b2019-03-13 21:02:14 +000041</project>