Sandeep Shah | ab118e5 | 2020-09-02 22:35:56 -0500 | [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"> |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Sandeep Shah | ab118e5 | 2020-09-02 22:35:56 -0500 | [diff] [blame] | 4 | |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.distribution</groupId> |
| 7 | <artifactId>distribution-platform-logic</artifactId> |
Dan Timoney | 486bd17 | 2021-03-22 13:52:45 -0400 | [diff] [blame^] | 8 | <version>1.2.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 9 | </parent> |
Sandeep Shah | ab118e5 | 2020-09-02 22:35:56 -0500 | [diff] [blame] | 10 | |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 11 | <artifactId>platform-logic-ranSlice</artifactId> |
| 12 | <packaging>pom</packaging> |
Sandeep Shah | ab118e5 | 2020-09-02 22:35:56 -0500 | [diff] [blame] | 13 | |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 14 | <name>ccsdk-distribution :: ${project.artifactId}</name> |
| 15 | <description>Contains platform-level service logic for responding to ORAN VES events</description> |
Sandeep Shah | ab118e5 | 2020-09-02 22:35:56 -0500 | [diff] [blame] | 16 | |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 17 | <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/graphs/ranSliceapi</outputDirectory> |
| 31 | <resources> |
| 32 | <resource> |
| 33 | <directory>src/main/xml</directory> |
| 34 | <includes> |
| 35 | <include>*.xml</include> |
| 36 | </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> |
Sandeep Shah | ab118e5 | 2020-09-02 22:35:56 -0500 | [diff] [blame] | 53 | </project> |