blob: 95b0e6e8e851ac8b03234e4131007d9e2cabb6bb [file] [log] [blame]
Dan Timoney79a53702017-09-06 11:03:15 -04001<?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">
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05003 <modelVersion>4.0.0</modelVersion>
Dan Timoney79a53702017-09-06 11:03:15 -04004
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05005 <parent>
Dan Timoneyf20174d2020-08-10 14:09:14 -04006 <groupId>org.onap.sdnc.oam</groupId>
7 <artifactId>platform-logic</artifactId>
Dan Timoney53a21832021-09-24 08:53:11 -04008 <version>2.3.0-SNAPSHOT</version>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05009 </parent>
Dan Timoney79a53702017-09-06 11:03:15 -040010
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050011 <artifactId>platform-logic-generic-resource-api</artifactId>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050012 <packaging>pom</packaging>
Dan Timoney79a53702017-09-06 11:03:15 -040013
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050014 <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
15 <description>Contains platform-level service logic for the Generic Resource API</description>
Dan Timoney79a53702017-09-06 11:03:15 -040016
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050017 <build>
18 <plugins>
19 <plugin>
20 <artifactId>maven-resources-plugin</artifactId>
21 <version>2.6</version>
22 <executions>
23 <execution>
24 <id>copy-version</id>
25 <goals>
26 <goal>copy-resources</goal>
27 </goals><!-- here the phase you need -->
28 <phase>validate</phase>
29 <configuration>
30 <outputDirectory>../target/svclogic/graphs/generic-resource-api</outputDirectory>
31 <resources>
32 <resource>
33 <directory>src/main/xml</directory>
34 <includes>
gaurav351d5312018-10-05 10:45:49 +053035 <include>**/*.xml</include>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050036 </includes>
37 <filtering>true</filtering>
38 </resource>
39 <resource>
40 <directory>src/main/resources</directory>
41 <includes>
42 <include>graph.versions</include>
43 </includes>
44 <filtering>true</filtering>
45 </resource>
46 </resources>
47 </configuration>
48 </execution>
49 </executions>
50 </plugin>
51 </plugins>
52 </build>
Dan Timoney79a53702017-09-06 11:03:15 -040053</project>