Merge "Bug 8214 Prevent NPE in isolation scenario"
[aaa.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2015 Brocade Communications Systems, Inc. and others. 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
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>karaf-parent</artifactId>
16         <version>1.9.0-SNAPSHOT</version>
17         <relativePath></relativePath>
18     </parent>
19
20     <groupId>org.opendaylight.aaa</groupId>
21     <artifactId>aaa-karaf</artifactId>
22     <version>0.6.0-SNAPSHOT</version>
23     <name>ODL :: aaa :: ${project.artifactId}</name>
24     <packaging>pom</packaging>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.aaa</groupId>
30                 <artifactId>aaa-artifacts</artifactId>
31                 <version>${project.version}</version>
32                 <scope>import</scope>
33                 <type>pom</type>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37
38     <dependencies>
39         <!-- Basic Karaf dependencies -->
40         <dependency>
41             <groupId>org.apache.karaf.features</groupId>
42             <artifactId>framework</artifactId>
43             <type>kar</type>
44         </dependency>
45
46         <!-- Project local feautures -->
47         <dependency>
48             <groupId>org.opendaylight.aaa</groupId>
49             <artifactId>features-aaa</artifactId>
50             <classifier>features</classifier>
51             <type>xml</type>
52             <scope>runtime</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.aaa</groupId>
56             <artifactId>features-aaa-shiro</artifactId>
57             <classifier>features</classifier>
58             <type>xml</type>
59             <scope>runtime</scope>
60         </dependency>
61     </dependencies>
62
63     <build>
64         <plugins>
65             <!-- DO NOT install or deploy the karaf artifact -->
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-install-plugin</artifactId>
69                 <configuration>
70                     <skip>true</skip>
71                 </configuration>
72             </plugin>
73             <plugin>
74                 <groupId>org.apache.maven.plugins</groupId>
75                 <artifactId>maven-deploy-plugin</artifactId>
76                 <configuration>
77                     <skip>true</skip>
78                 </configuration>
79             </plugin>
80         </plugins>
81     </build>
82
83     <scm>
84         <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
85         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
86         <tag>HEAD</tag>
87         <url>https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary</url>
88     </scm>
89 </project>