1. Updated pom.xml for renderer and impl to replace mockito-all with mockito-core
[transportpce.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>karaf-parent</artifactId>
14     <version>1.8.0-SNAPSHOT</version>
15   </parent>
16
17   <groupId>org.opendaylight.transportpce</groupId>
18   <artifactId>transportpce-karaf</artifactId>
19   <version>0.1.0-SNAPSHOT</version>
20   <name>${project.artifactId}</name>
21
22   <properties>
23     <karaf.localFeature>odl-transportpce-ui</karaf.localFeature>
24   </properties>
25
26   <dependencyManagement>
27     <dependencies>
28       <dependency>
29         <groupId>${project.groupId}</groupId>
30         <artifactId>transportpce-artifacts</artifactId>
31         <version>${project.version}</version>
32         <type>pom</type>
33         <scope>import</scope>
34       </dependency>
35     </dependencies>
36   </dependencyManagement>
37
38   <dependencies>
39     <dependency>
40       <!-- scope is compile so all features (there is only one) are installed
41       into startup.properties and the feature repo itself is not installed -->
42       <groupId>org.apache.karaf.features</groupId>
43       <artifactId>framework</artifactId>
44       <type>kar</type>
45     </dependency>
46
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>transportpce-features</artifactId>
50       <classifier>features</classifier>
51       <type>xml</type>
52       <scope>runtime</scope>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <!-- DO NOT deploy the karaf artifact -->
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-deploy-plugin</artifactId>
62         <configuration>
63           <skip>true</skip>
64         </configuration>
65       </plugin>
66     </plugins>
67   </build>
68 </project>