Franklin Dsilva | 1b47001 | 2020-02-20 05:14:28 +0000 | [diff] [blame] | 1 | <?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 Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 6 | <groupId>org.onap.sdnc.oam</groupId> |
| 7 | <artifactId>platform-logic</artifactId> |
Piotr Marcinkiewicz | eba6928 | 2021-02-24 08:26:27 +0100 | [diff] [blame^] | 8 | <version>2.0.7-SNAPSHOT</version> |
Franklin Dsilva | 1b47001 | 2020-02-20 05:14:28 +0000 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <groupId>org.onap.sdnc.oam</groupId> |
| 12 | <artifactId>platform-logic-optical-service</artifactId> |
Piotr Marcinkiewicz | eba6928 | 2021-02-24 08:26:27 +0100 | [diff] [blame^] | 13 | <version>2.0.7-SNAPSHOT</version> |
Franklin Dsilva | 1b47001 | 2020-02-20 05:14:28 +0000 | [diff] [blame] | 14 | <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> |