Trying out bgp-api with apidoc explorer
[unimgr.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.2" 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">
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>karaf4-parent</artifactId>
13     <version>4.0.10</version>
14     <relativePath/>
15   </parent>
16   <modelVersion>4.0.0</modelVersion>
17   <groupId>org.opendaylight.unimgr</groupId>
18   <artifactId>unimgr-karaf4</artifactId>
19   <version>0.5.0-SNAPSHOT</version>
20   <!-- <name> formatting is used by autorelease to parse and notify projects on
21        build failure. Please do not modify this unless you have a good reason. -->
22   <name>ODL :: unimgr :: ${project.artifactId}</name>
23   <prerequisites>
24     <maven>3.1.1</maven>
25   </prerequisites>
26   <properties>
27     <karaf.localFeature>odl-unimgr-rest</karaf.localFeature>
28   </properties>
29   <dependencyManagement>
30     <dependencies>
31       <dependency>
32         <groupId>${project.groupId}</groupId>
33         <artifactId>unimgr-artifacts</artifactId>
34         <version>${project.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38     </dependencies>
39   </dependencyManagement>
40   <dependencies>
41     <dependency>
42       <!-- scope is compile so all features (there is only one) are installed
43       into startup.properties and the feature repo itself is not installed -->
44       <groupId>org.apache.karaf.features</groupId>
45       <artifactId>framework</artifactId>
46       <type>kar</type>
47       <scope>compile</scope>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>features4-unimgr</artifactId>
52       <classifier>features</classifier>
53       <type>xml</type>
54       <scope>runtime</scope>
55     </dependency>
56   </dependencies>
57   <!-- DO NOT install or deploy the karaf artifact -->
58   <build>
59     <resources>
60       <resource>
61         <directory>src/main/resources/</directory>
62         <filtering>false</filtering>
63       </resource>
64     </resources>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-resources-plugin</artifactId>
69         <executions>
70           <execution>
71             <id>process-resources</id>
72             <goals>
73               <goal>resources</goal>
74             </goals>
75             <configuration>
76                 <outputDirectory>${project.build.directory}/assembly/</outputDirectory>
77                 <overwrite>true</overwrite>
78             </configuration>
79           </execution>
80         </executions>
81       </plugin>
82       <plugin>
83         <groupId>org.apache.maven.plugins</groupId>
84         <artifactId>maven-deploy-plugin</artifactId>
85         <configuration>
86           <skip>true</skip>
87         </configuration>
88       </plugin>
89     </plugins>
90   </build>
91 </project>