shashikanth.vh | 55b429c | 2018-09-07 14:38:22 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | fe8d3bc | 2019-01-18 16:51:25 -0500 | [diff] [blame] | 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"> |
shashikanth.vh | 55b429c | 2018-09-07 14:38:22 +0530 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | 1012cdd | 2020-08-07 14:50:14 -0400 | [diff] [blame^] | 8 | <version>2.0.0</version> |
Timoney, Dan (dt5972) | fe8d3bc | 2019-01-18 16:51:25 -0500 | [diff] [blame] | 9 | <relativePath/> |
shashikanth.vh | 55b429c | 2018-09-07 14:38:22 +0530 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.sdnc.oam</groupId> |
| 13 | <artifactId>platform-logic-datachange</artifactId> |
Dan Timoney | 03c6d76 | 2020-03-18 09:30:59 -0400 | [diff] [blame] | 14 | <version>2.0.0-SNAPSHOT</version> |
shashikanth.vh | 55b429c | 2018-09-07 14:38:22 +0530 | [diff] [blame] | 15 | <packaging>pom</packaging> |
| 16 | |
| 17 | <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name> |
| 18 | <description>Contains platform-level service logic for the data change</description> |
| 19 | |
| 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <artifactId>maven-resources-plugin</artifactId> |
| 24 | <version>2.6</version> |
| 25 | <executions> |
| 26 | <execution> |
| 27 | <id>copy-version</id> |
| 28 | <goals> |
| 29 | <goal>copy-resources</goal> |
| 30 | </goals><!-- here the phase you need --> |
| 31 | <phase>validate</phase> |
| 32 | <configuration> |
| 33 | <outputDirectory>../target/svclogic/graphs/datachange</outputDirectory> |
| 34 | <resources> |
| 35 | <resource> |
| 36 | <directory>src/main/xml</directory> |
| 37 | <includes> |
gaurav | 351d531 | 2018-10-05 10:45:49 +0530 | [diff] [blame] | 38 | <include>**/*.xml</include> |
shashikanth.vh | 55b429c | 2018-09-07 14:38:22 +0530 | [diff] [blame] | 39 | </includes> |
| 40 | <filtering>true</filtering> |
| 41 | </resource> |
| 42 | <resource> |
| 43 | <directory>src/main/resources</directory> |
| 44 | <includes> |
| 45 | <include>graph.versions</include> |
| 46 | </includes> |
| 47 | <filtering>true</filtering> |
| 48 | </resource> |
| 49 | </resources> |
| 50 | </configuration> |
| 51 | </execution> |
| 52 | </executions> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
| 56 | </project> |