blob: 764626137983adc2062f3e1a149a51667fefdf33 [file] [log] [blame]
Franklin Dsilva1b470012020-02-20 05:14:28 +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>
Dan Timoneyf20174d2020-08-10 14:09:14 -04006 <groupId>org.onap.sdnc.oam</groupId>
7 <artifactId>platform-logic</artifactId>
Piotr Marcinkiewiczeba69282021-02-24 08:26:27 +01008 <version>2.0.7-SNAPSHOT</version>
Franklin Dsilva1b470012020-02-20 05:14:28 +00009 </parent>
10
11 <groupId>org.onap.sdnc.oam</groupId>
12 <artifactId>platform-logic-optical-service</artifactId>
Piotr Marcinkiewiczeba69282021-02-24 08:26:27 +010013 <version>2.0.7-SNAPSHOT</version>
Franklin Dsilva1b470012020-02-20 05:14:28 +000014 <packaging>pom</packaging>
15
16 <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
17 <description>Contains platform-level service logic for the optical service</description>
18
19 <build>
20 <plugins>
21 <plugin>
22 <artifactId>maven-resources-plugin</artifactId>
23 <version>2.6</version>
24 <executions>
25 <execution>
26 <id>copy-version</id>
27 <goals>
28 <goal>copy-resources</goal>
29 </goals><!-- here the phase you need -->
30 <phase>validate</phase>
31 <configuration>
32 <outputDirectory>../target/svclogic/graphs/optical-service</outputDirectory>
33 <resources>
34 <resource>
35 <directory>src/main/xml</directory>
36 <includes>
37 <include>**/*.xml</include>
38 </includes>
39 <filtering>true</filtering>
40 </resource>
41 <resource>
42 <directory>src/main/resources</directory>
43 <includes>
44 <include>graph.versions</include>
45 </includes>
46 <filtering>true</filtering>
47 </resource>
48 </resources>
49 </configuration>
50 </execution>
51 </executions>
52 </plugin>
53 </plugins>
54 </build>
55</project>