blob: a3a1a63e5d9695d2301d2ee63cb84d68eeef709c [file] [log] [blame]
Ruchira Agarwald7932cd2018-04-24 23:21:56 +00001<?xml version="1.0" encoding="UTF-8"?>
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">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)a4c20262018-06-01 08:08:49 -04008 <version>1.0.4</version>
Ruchira Agarwald7932cd2018-04-24 23:21:56 +00009 <relativePath />
10 </parent>
11
12 <groupId>org.onap.sdnc.oam</groupId>
13 <artifactId>platform-logic-lcm</artifactId>
Timoney, Dan (dt5972)a4c20262018-06-01 08:08:49 -040014 <version>1.3.4-SNAPSHOT</version>
Ruchira Agarwald7932cd2018-04-24 23:21:56 +000015 <packaging>pom</packaging>
16
17 <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
18 <description>Contains platform-level service logic for the LCM</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/lcm</outputDirectory>
34 <resources>
35 <resource>
36 <directory>src/main/xml</directory>
37 <includes>
38 <include>*.xml</include>
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>