blob: c891611502cb9c83e481f59676033e8ee22fbb46 [file] [log] [blame]
Sandeep Shah3da6a9e2019-04-06 18:53:15 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -04002<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)05e42772019-12-12 11:20:58 -05003 <modelVersion>4.0.0</modelVersion>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -05004
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -05008 <version>1.5.2-SNAPSHOT</version>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -05009 <relativePath/>
10 </parent>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050011
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050012 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
13 <artifactId>oofpcipoc-installer</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -050014 <version>0.7.1-SNAPSHOT</version>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050015 <packaging>pom</packaging>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050016
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050017 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050018
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050019 <properties>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050020 <application.name>oofpcipoc</application.name>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050021 <include.transitive.dependencies>false</include.transitive.dependencies>
22 </properties>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050023
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050024 <dependencies>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050025
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050026 <dependency>
27 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050028 <artifactId>${application.name}-feature</artifactId>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050029 <version>${project.version}</version>
30 <type>xml</type>
31 <classifier>features</classifier>
32 <exclusions>
33 <exclusion>
34 <groupId>*</groupId>
35 <artifactId>*</artifactId>
36 </exclusion>
37 </exclusions>
38 </dependency>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050039
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050040 <dependency>
41 <groupId>${project.groupId}</groupId>
42 <artifactId>oofpcipoc-provider</artifactId>
43 <version>${project.version}</version>
44 </dependency>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050045
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050046 <dependency>
47 <groupId>${project.groupId}</groupId>
48 <artifactId>oofpcipoc-consumer</artifactId>
49 <version>${project.version}</version>
50 </dependency>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050051
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050052 </dependencies>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050053
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050054 <build>
55 <plugins>
56 <plugin>
57 <artifactId>maven-assembly-plugin</artifactId>
58 <executions>
59 <execution>
60 <id>maven-repo-zip</id>
61 <goals>
62 <goal>single</goal>
63 </goals>
64 <phase>package</phase>
65 <configuration>
66 <attach>true</attach>
67 <finalName>stage/${application.name}-${project.version}</finalName>
68 <descriptors>
69 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
70 </descriptors>
71 <appendAssemblyId>true</appendAssemblyId>
72 </configuration>
73 </execution>
74 </executions>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-dependency-plugin</artifactId>
79 <executions>
80 <execution>
81 <id>copy-dependencies</id>
82 <goals>
83 <goal>copy-dependencies</goal>
84 </goals>
85 <phase>prepare-package</phase>
86 <configuration>
87 <transitive>false</transitive>
88 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
89 <overWriteReleases>false</overWriteReleases>
90 <overWriteSnapshots>true</overWriteSnapshots>
91 <overWriteIfNewer>true</overWriteIfNewer>
92 <useRepositoryLayout>true</useRepositoryLayout>
93 <addParentPoms>false</addParentPoms>
94 <copyPom>false</copyPom>
Dan Timoney6de89792020-01-16 15:13:32 -050095 <includeArtifactIds>oofpcipoc-model,oofpcipoc-provider,oofpcipoc-consumer,oofpcipoc-feature</includeArtifactIds>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050096 <scope>provided</scope>
97 </configuration>
98 </execution>
99 </executions>
100 </plugin>
101 </plugins>
102 </build>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -0500103</project>