Release version 2.1.2 dockers and roll version
[sdnc/oam.git] / platform-logic / datachange / pom.xml
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>
6         <groupId>org.onap.sdnc.oam</groupId>
7         <artifactId>platform-logic</artifactId>
8         <version>2.1.3-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.sdnc.oam</groupId>
12     <artifactId>platform-logic-datachange</artifactId>
13     <version>2.1.3-SNAPSHOT</version>
14     <packaging>pom</packaging>
15
16     <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
17     <description>Contains platform-level service logic for the data change</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/datachange</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>