diff options
author | Sandeep Shah <sandeeplinux1068@gmail.com> | 2020-03-03 10:59:21 -0600 |
---|---|---|
committer | Sandeep Shah <sandeeplinux1068@gmail.com> | 2020-03-04 10:08:38 -0600 |
commit | c7c592a42d9cb50a8da2081d838474607cbea879 (patch) | |
tree | 0674ab14716a94f5d03e8048e6230d009e882403 /platform-logic/cMNotify-api/pom.xml | |
parent | ea4425a876dc0a0121ec8ca06200dbbc15b306c5 (diff) |
Platform/DG logic support for CMNotify
Structure to include Directed Graphs for
CMNotify VES events
Issue-ID: CCSDK-2132
Signed-off-by: SandeepLinux <Sandeep.Shah@ibm.com>
Change-Id: I57f46fac85092f211884d05e36690a09cb6152e1
Diffstat (limited to 'platform-logic/cMNotify-api/pom.xml')
-rw-r--r-- | platform-logic/cMNotify-api/pom.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/platform-logic/cMNotify-api/pom.xml b/platform-logic/cMNotify-api/pom.xml new file mode 100644 index 00000000..426e4bac --- /dev/null +++ b/platform-logic/cMNotify-api/pom.xml @@ -0,0 +1,54 @@ +<?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.distribution</groupId> + <artifactId>distribution-platform-logic</artifactId> + <version>0.7.1-SNAPSHOT</version> + </parent> + + <artifactId>platform-logic-cMNotifyai</artifactId> + <version>0.7.1-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>ccsdk-distribution :: platform-logic :: ${project.artifactId}</name> + <description>Contains platform-level service logic for responding to ORAN VES events</description> + + <build> + <plugins> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <version>2.6</version> + <executions> + <execution> + <id>copy-version</id> + <goals> + <goal>copy-resources</goal> + </goals><!-- here the phase you need --> + <phase>validate</phase> + <configuration> + <outputDirectory>../target/graphs/cMNotifyapi</outputDirectory> + <resources> + <resource> + <directory>src/main/xml</directory> + <includes> + <include>*.xml</include> + </includes> + <filtering>true</filtering> + </resource> + <resource> + <directory>src/main/resources</directory> + <includes> + <include>graph.versions</include> + </includes> + <filtering>true</filtering> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> |