blob: 92c2c8c85057cbaf45c724a61cfb6aa72868d089 [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -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">
3 <modelVersion>4.0.0</modelVersion>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05004
5 <parent>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)2fdf2a82018-10-16 09:03:41 -04008 <version>1.1.1</version>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05009 <relativePath />
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050010 </parent>
11
Dan Timoney98ddb132017-09-01 17:40:45 -040012 <groupId>org.onap.sdnc.oam</groupId>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050013 <artifactId>platform-logic-vnfapi</artifactId>
Alexis de Talhouƫt1901ac82018-10-04 21:24:29 -040014 <version>1.4.1-SNAPSHOT</version>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050015 <packaging>pom</packaging>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050016
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050017 <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050018 <description>Contains platform-level service logic for the VNF-API</description>
19
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050020 <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>
Dan Timoneye86e05b2017-09-20 15:11:18 -040033 <outputDirectory>../target/svclogic/graphs/vnfapi</outputDirectory>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050034 <resources>
35 <resource>
36 <directory>src/main/xml</directory>
37 <includes>
gaurav351d5312018-10-05 10:45:49 +053038 <include>**/*.xml</include>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050039 </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>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050056</project>