blob: b98c4a2f02ca4922c7b95e584e568881b65c639e [file] [log] [blame]
gaurav09ad33e2018-09-25 17:01:34 +05301<?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">
gaurav09ad33e2018-09-25 17:01:34 +05303 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney57495f02020-05-07 14:49:45 -04008 <version>1.5.5-SNAPSHOT</version>
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -05009 <relativePath/>
gaurav09ad33e2018-09-25 17:01:34 +053010 </parent>
11
12 <groupId>org.onap.sdnc.oam</groupId>
13 <artifactId>platform-logic-restconfapi-yang</artifactId>
Dan Timoney57495f02020-05-07 14:49:45 -040014 <version>1.8.3-SNAPSHOT</version>
gaurav09ad33e2018-09-25 17:01:34 +053015 <packaging>pom</packaging>
16
17 <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
18 <description>Contains Restconf API YANG</description>
19
20 <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>
33 <outputDirectory>../target/restconfapi/yang</outputDirectory>
34 <resources>
35 <resource>
36 <directory>src/main/yang</directory>
37 <includes>
gaurav2b5c5342018-10-05 10:08:34 +053038 <include>**/*.yang</include>
gaurav09ad33e2018-09-25 17:01:34 +053039 </includes>
40 <filtering>true</filtering>
41 </resource>
42 </resources>
43 </configuration>
44 </execution>
45 </executions>
46 </plugin>
47 </plugins>
48 </build>
49</project>