blob: a25894a93fd0f10dc396b45cac9d66c4a31e9b18 [file] [log] [blame]
shashikanth.vh55b429c2018-09-07 14:38:22 +05301<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -05002<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.vh55b429c2018-09-07 14:38:22 +05303 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney1012cdd2020-08-07 14:50:14 -04008 <version>2.0.0</version>
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -05009 <relativePath/>
shashikanth.vh55b429c2018-09-07 14:38:22 +053010 </parent>
11
12 <groupId>org.onap.sdnc.oam</groupId>
13 <artifactId>platform-logic-datachange</artifactId>
Dan Timoney03c6d762020-03-18 09:30:59 -040014 <version>2.0.0-SNAPSHOT</version>
shashikanth.vh55b429c2018-09-07 14:38:22 +053015 <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>
gaurav351d5312018-10-05 10:45:49 +053038 <include>**/*.xml</include>
shashikanth.vh55b429c2018-09-07 14:38:22 +053039 </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>