blob: b8fa733df3f1ca71b8cd0c3d349f1de89019cffb [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<?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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5 <parent>
6 <groupId>org.openecomp.sdnc.oam</groupId>
7 <artifactId>platform-logic</artifactId>
Dan Timoney139e1b52017-04-26 08:13:03 -04008 <version>1.1.1-SNAPSHOT</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05009 </parent>
10
11 <modelVersion>4.0.0</modelVersion>
12 <packaging>pom</packaging>
13 <groupId>org.openecomp.sdnc.oam</groupId>
14 <artifactId>platform-logic-vnfapi</artifactId>
Dan Timoney139e1b52017-04-26 08:13:03 -040015 <version>1.1.1-SNAPSHOT</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050016
17 <name>Platform Logic : VNF-API</name>
18 <description>Contains platform-level service logic for the VNF-API</description>
19
20
21 <build>
22 <plugins>
23 <plugin>
24 <artifactId>maven-resources-plugin</artifactId>
25 <version>2.6</version>
26 <executions>
27 <execution>
28 <id>copy-version</id>
29 <goals>
30 <goal>copy-resources</goal>
31 </goals><!-- here the phase you need -->
32 <phase>validate</phase>
33 <configuration>
34 <outputDirectory>../target/graphs/vnfapi</outputDirectory>
35 <resources>
36 <resource>
37 <directory>src/main/xml</directory>
38 <includes>
39 <include>*.xml</include>
40 </includes>
41 <filtering>true</filtering>
42 </resource>
43 <resource>
44 <directory>src/main/resources</directory>
45 <includes>
46 <include>graph.versions</include>
47 </includes>
48 <filtering>true</filtering>
49 </resource>
50 </resources>
51 </configuration>
52 </execution>
53 </executions>
54 </plugin>
55 </plugins>
56 </build>
57
58</project>