herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ ONAP : ccsdk features |
| 5 | ~ ================================================================================ |
| 6 | ~ Copyright (C) 2018 highstreet technologies GmbH Intellectual Property. |
| 7 | ~ All rights reserved. |
| 8 | ~ ================================================================================ |
| 9 | ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
| 10 | ~ ================================================================================ |
| 11 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 12 | ~ you may not use this file except in compliance with the License. |
| 13 | ~ You may obtain a copy of the License at |
| 14 | ~ |
| 15 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 16 | ~ |
| 17 | ~ Unless required by applicable law or agreed to in writing, software |
| 18 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 19 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 20 | ~ See the License for the specific language governing permissions and |
| 21 | ~ limitations under the License. |
| 22 | ~ ============LICENSE_END======================================================= |
| 23 | ~ |
| 24 | --> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 25 | |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 26 | <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) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 27 | <modelVersion>4.0.0</modelVersion> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 28 | |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 29 | <parent> |
| 30 | <groupId>org.onap.ccsdk.parent</groupId> |
| 31 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | af9977a | 2021-03-09 11:39:34 -0500 | [diff] [blame] | 32 | <version>2.2.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 33 | <relativePath/> |
| 34 | </parent> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 35 | |
Ravi Pendurty | cbac438 | 2021-02-03 16:19:39 +0100 | [diff] [blame] | 36 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 37 | <artifactId>sdnr-wt-data-provider-installer</artifactId> |
Dan Timoney | af9977a | 2021-03-09 11:39:34 -0500 | [diff] [blame] | 38 | <version>1.2.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 39 | <packaging>pom</packaging> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 40 | |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 41 | <name>ccsdk-features :: ${project.artifactId}</name> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 42 | |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 43 | <properties> |
| 44 | <application.name>sdnr-wt-data-provider</application.name> |
| 45 | <include.transitive.dependencies>false</include.transitive.dependencies> |
| 46 | </properties> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 47 | |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 48 | <dependencies> |
| 49 | <dependency> |
Michael DÜrre | fa0febc | 2021-06-30 08:26:04 +0200 | [diff] [blame] | 50 | <groupId>${project.groupId}</groupId> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 51 | <artifactId>${application.name}-feature</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | <type>xml</type> |
| 54 | <classifier>features</classifier> |
| 55 | <exclusions> |
| 56 | <exclusion> |
| 57 | <groupId>*</groupId> |
| 58 | <artifactId>*</artifactId> |
| 59 | </exclusion> |
| 60 | </exclusions> |
| 61 | </dependency> |
| 62 | <dependency> |
Michael DÜrre | fa0febc | 2021-06-30 08:26:04 +0200 | [diff] [blame] | 63 | <groupId>${project.groupId}</groupId> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 64 | <artifactId>${application.name}-provider</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | </dependency> |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 67 | <dependency> |
Michael DÜrre | fa0febc | 2021-06-30 08:26:04 +0200 | [diff] [blame] | 68 | <groupId>${project.groupId}</groupId> |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 69 | <artifactId>${application.name}-setup</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 72 | </dependencies> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 73 | |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 74 | <build> |
| 75 | <plugins> |
| 76 | <plugin> |
| 77 | <artifactId>maven-assembly-plugin</artifactId> |
| 78 | <executions> |
| 79 | <execution> |
| 80 | <id>maven-repo-zip</id> |
| 81 | <goals> |
| 82 | <goal>single</goal> |
| 83 | </goals> |
| 84 | <phase>package</phase> |
| 85 | <configuration> |
| 86 | <attach>true</attach> |
| 87 | <finalName>stage/${application.name}-${project.version}</finalName> |
| 88 | <descriptors> |
| 89 | <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> |
| 90 | </descriptors> |
| 91 | <appendAssemblyId>true</appendAssemblyId> |
| 92 | </configuration> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.maven.plugins</groupId> |
| 98 | <artifactId>maven-dependency-plugin</artifactId> |
| 99 | <executions> |
| 100 | <execution> |
| 101 | <id>copy-nested-dependencies</id> |
| 102 | <goals> |
| 103 | <goal>copy-dependencies</goal> |
| 104 | </goals> |
| 105 | <phase>prepare-package</phase> |
| 106 | <configuration> |
| 107 | <transitive>true</transitive> |
| 108 | <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> |
| 109 | <overWriteReleases>false</overWriteReleases> |
| 110 | <overWriteSnapshots>true</overWriteSnapshots> |
| 111 | <overWriteIfNewer>true</overWriteIfNewer> |
| 112 | <useRepositoryLayout>true</useRepositoryLayout> |
| 113 | <addParentPoms>false</addParentPoms> |
| 114 | <copyPom>false</copyPom> |
| 115 | </configuration> |
| 116 | </execution> |
| 117 | </executions> |
| 118 | </plugin> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 119 | </plugins> |
| 120 | </build> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 121 | </project> |