sai-neetha | 96a5331 | 2019-08-08 12:46:00 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 2 | <!-- |
| 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ ONAP : ccsdk features |
| 5 | ~ ================================================================================ |
| 6 | ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
| 7 | ~ ================================================================================ |
| 8 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | ~ you may not use this file except in compliance with the License. |
| 10 | ~ You may obtain a copy of the License at |
| 11 | ~ |
| 12 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | ~ |
| 14 | ~ Unless required by applicable law or agreed to in writing, software |
| 15 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | ~ See the License for the specific language governing permissions and |
| 18 | ~ limitations under the License. |
| 19 | ~ ============LICENSE_END======================================================= |
| 20 | ~ |
| 21 | --> |
| 22 | |
| 23 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
sai-neetha | 96a5331 | 2019-08-08 12:46:00 +0200 | [diff] [blame] | 25 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.ccsdk.parent</groupId> |
| 28 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | cf72411 | 2021-03-24 13:15:26 -0400 | [diff] [blame] | 29 | <version>2.1.2</version> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 30 | <relativePath/> |
| 31 | </parent> |
sai-neetha | 96a5331 | 2019-08-08 12:46:00 +0200 | [diff] [blame] | 32 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 33 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 34 | <artifactId>sdnr-wt-readthedocs-installer</artifactId> |
Dan Timoney | 1bd16a4 | 2020-11-25 16:13:30 -0500 | [diff] [blame] | 35 | <version>1.1.1-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 36 | <packaging>pom</packaging> |
sai-neetha | 96a5331 | 2019-08-08 12:46:00 +0200 | [diff] [blame] | 37 | |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 38 | <name>ccsdk-features :: ${project.artifactId}</name> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 39 | |
| 40 | <properties> |
| 41 | <application.name>sdnr-wt-apigateway</application.name> |
| 42 | <include.transitive.dependencies>false</include.transitive.dependencies> |
| 43 | </properties> |
| 44 | |
| 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <artifactId>exec-maven-plugin</artifactId> |
| 49 | <groupId>org.codehaus.mojo</groupId> |
| 50 | <executions> |
| 51 | <execution><!-- Run our version calculation script --> |
| 52 | <id>generate readthedocs files from helpserver markdowns</id> |
| 53 | <phase>generate-resources</phase> |
| 54 | <goals> |
| 55 | <goal>exec</goal> |
| 56 | </goals> |
| 57 | <configuration> |
| 58 | <executable>convert.sh</executable> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <artifactId>maven-assembly-plugin</artifactId> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <id>maven-repo-zip</id> |
| 68 | <goals> |
| 69 | <goal>single</goal> |
| 70 | </goals> |
| 71 | <phase>package</phase> |
| 72 | <configuration> |
| 73 | <attach>true</attach> |
| 74 | <finalName>stage/${application.name}-${project.version}</finalName> |
| 75 | <descriptors> |
| 76 | <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> |
| 77 | </descriptors> |
| 78 | <appendAssemblyId>true</appendAssemblyId> |
| 79 | </configuration> |
| 80 | </execution> |
| 81 | </executions> |
| 82 | </plugin> |
| 83 | <plugin> |
| 84 | <artifactId>maven-resources-plugin</artifactId> |
| 85 | <version>3.1.0</version> |
| 86 | <executions> |
| 87 | <execution> |
| 88 | <id>copy-resources</id> |
| 89 | <!-- here the phase you need --> |
| 90 | <!-- <phase>validate</phase> --> |
| 91 | <phase>prepare-package</phase> |
| 92 | <goals> |
| 93 | <goal>copy-resources</goal> |
| 94 | </goals> |
| 95 | <configuration> |
| 96 | <outputDirectory>${project.build.directory}/assembly/docs/</outputDirectory> |
| 97 | <resources> |
| 98 | <resource> |
| 99 | <directory>../../../docs/</directory> |
| 100 | <filtering>true</filtering> |
| 101 | </resource> |
| 102 | </resources> |
| 103 | </configuration> |
| 104 | </execution> |
| 105 | </executions> |
| 106 | </plugin> |
| 107 | </plugins> |
| 108 | </build> |
sai-neetha | 96a5331 | 2019-08-08 12:46:00 +0200 | [diff] [blame] | 109 | </project> |