diff options
author | Ruchira Agarwal <ra1926@att.com> | 2018-04-24 23:21:56 +0000 |
---|---|---|
committer | Ruchira Agarwal <ra1926@att.com> | 2018-04-24 23:21:56 +0000 |
commit | d7932cdc2def1addc692599b861908b65d7edb8a (patch) | |
tree | d859f90a8c7d0e1471138521ca548c6b957911a9 /platform-logic/lcm/pom.xml | |
parent | 03161921e2a0728d0a7e0a604b6744cbb621e337 (diff) |
LCM UpgradeSoftware DGs
Add LCM DGs for SoftwareUpgrade
Change-Id: I06df6276a4adb038ab3e1601ef7f3c7a7fc1a08b
Issue-ID: SDNC-289
Signed-off-by: Ruchira Agarwal <ra1926@att.com>
Former-commit-id: f8a3ed75d39de6abbbb2b70b98a0de88ab8e7b89
Diffstat (limited to 'platform-logic/lcm/pom.xml')
-rw-r--r-- | platform-logic/lcm/pom.xml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/platform-logic/lcm/pom.xml b/platform-logic/lcm/pom.xml new file mode 100644 index 00000000..58b958f9 --- /dev/null +++ b/platform-logic/lcm/pom.xml @@ -0,0 +1,56 @@ +<?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.parent</groupId> + <artifactId>odlparent-lite</artifactId> + <version>1.0.1-SNAPSHOT</version> + <relativePath /> + </parent> + + <groupId>org.onap.sdnc.oam</groupId> + <artifactId>platform-logic-lcm</artifactId> + <version>1.3.1-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name> + <description>Contains platform-level service logic for the LCM</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/svclogic/graphs/lcm</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> |