Smokowski, Kevin (ks6305) | 8506f0b | 2019-03-13 21:02:14 +0000 | [diff] [blame] | 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"> |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Smokowski, Kevin (ks6305) | 8506f0b | 2019-03-13 21:02:14 +0000 | [diff] [blame] | 4 | |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId> |
| 7 | <artifactId>publisher.aggregate</artifactId> |
Dan Timoney | 21e0eb9 | 2023-06-06 06:44:51 -0400 | [diff] [blame^] | 8 | <version>1.7.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 9 | </parent> |
Smokowski, Kevin (ks6305) | 8506f0b | 2019-03-13 21:02:14 +0000 | [diff] [blame] | 10 | |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 11 | <artifactId>sample.client</artifactId> |
| 12 | <packaging>bundle</packaging> |
Smokowski, Kevin (ks6305) | 8506f0b | 2019-03-13 21:02:14 +0000 | [diff] [blame] | 13 | |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 14 | <name>ccsdk-sli-adaptors :: message-router :: publisher.${project.artifactId}</name> |
Smokowski, Kevin (ks6305) | 8506f0b | 2019-03-13 21:02:14 +0000 | [diff] [blame] | 15 | |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 16 | <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) | 8506f0b | 2019-03-13 21:02:14 +0000 | [diff] [blame] | 41 | </project> |