diff options
author | Smokowski, Kevin (ks6305) <kevin.smokowski@att.com> | 2019-03-13 21:02:14 +0000 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2019-03-18 18:30:18 +0000 |
commit | 8506f0b261083e945488e869803bcd5ab8b7ea84 (patch) | |
tree | fa0937b2fdf31b2d334affd1eb2838d2bddf2842 /message-router/publisher/pom.xml | |
parent | 20e9eda25ee9aebbcd5fda7497a0baccb64348af (diff) |
add message router publisher
initial api and implementation of message router publisher
Change-Id: Ic69d013bae8ab8c842e6ecd2eef41e10649d1009
Issue-ID: CCSDK-1163
Signed-off-by: Smokowski, Kevin (ks6305) <kevin.smokowski@att.com>
Diffstat (limited to 'message-router/publisher/pom.xml')
-rwxr-xr-x | message-router/publisher/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/message-router/publisher/pom.xml b/message-router/publisher/pom.xml new file mode 100755 index 000000000..eded68fde --- /dev/null +++ b/message-router/publisher/pom.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.onap.ccsdk.messagerouter</groupId> + <artifactId>parent</artifactId> + <version>0.4.1-SNAPSHOT</version> + </parent> + + <artifactId>publisher.aggregate</artifactId> + <packaging>pom</packaging> + + <modules> + <module>api</module> + <module>features</module> + <module>provider</module> + <module>sample.client</module> + <module>installer</module> + </modules> +</project> |