blob: c99a9e75567a73859020636870c707cf41107c69 [file] [log] [blame]
Smokowski, Kevin (ks6305)d14bb402019-05-30 22:23:52 +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)d14bb402019-05-30 22:23:52 +00004
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05005 <parent>
6 <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId>
7 <artifactId>consumer.aggregate</artifactId>
Dan Timoneye6677452022-09-21 16:24:52 -04008 <version>1.5.2-SNAPSHOT</version>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05009 </parent>
Smokowski, Kevin (ks6305)d14bb402019-05-30 22:23:52 +000010
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050011 <artifactId>consumer.provider</artifactId>
12 <packaging>bundle</packaging>
Smokowski, Kevin (ks6305)d14bb402019-05-30 22:23:52 +000013
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050014 <name>ccsdk-sli-adaptors :: message-router :: ${project.artifactId}</name>
Smokowski, Kevin (ks6305)d14bb402019-05-30 22:23:52 +000015
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050016 <dependencies>
17 <dependency>
18 <groupId>${project.groupId}</groupId>
19 <artifactId>consumer.api</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>org.slf4j</groupId>
24 <artifactId>slf4j-api</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>com.google.code.gson</groupId>
28 <artifactId>gson</artifactId>
29 </dependency>
Dan Timoney4e4988a2021-07-09 10:20:56 -040030 <dependency>
31 <groupId>org.onap.ccsdk.sli.core</groupId>
32 <artifactId>utils-provider</artifactId>
33 <version>${project.version}</version>
34 </dependency>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050035 </dependencies>
36
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
42 <configuration>
43 <instructions>
44 <Export-Package>${project.groupId}.consumer.provider.impl</Export-Package>
45 </instructions>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
Smokowski, Kevin (ks6305)d14bb402019-05-30 22:23:52 +000050</project>