Release Carbon
[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.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">
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>karaf-parent</artifactId>
13     <version>1.8.1-Carbon</version>
14     <relativePath/>
15   </parent>
16   <modelVersion>4.0.0</modelVersion>
17   <groupId>org.opendaylight.unimgr</groupId>
18   <artifactId>unimgr-karaf</artifactId>
19   <version>0.2.1-Carbon</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-ui</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     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>unimgr-features</artifactId>
51       <classifier>features</classifier>
52       <type>xml</type>
53       <scope>runtime</scope>
54     </dependency>
55   </dependencies>
56   <!-- DO NOT install or deploy the karaf artifact -->
57   <build>
58     <resources>
59       <resource>
60         <directory>src/main/resources/</directory>
61         <filtering>false</filtering>
62       </resource>
63     </resources>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.maven.plugins</groupId>
67         <artifactId>maven-resources-plugin</artifactId>
68         <executions>
69           <execution>
70             <id>process-resources</id>
71             <goals>
72               <goal>resources</goal>
73             </goals>
74             <configuration>
75                 <outputDirectory>${project.build.directory}/assembly/</outputDirectory>
76                 <overwrite>true</overwrite>
77             </configuration>
78           </execution>
79         </executions>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-deploy-plugin</artifactId>
84         <configuration>
85           <skip>true</skip>
86         </configuration>
87       </plugin>
88     </plugins>
89   </build>
90 </project>