AAA Moon Authentication Module support
[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.8.0-SNAPSHOT</version>
17         <relativePath></relativePath>
18     </parent>
19
20     <groupId>org.opendaylight.aaa</groupId>
21     <artifactId>aaa-karaf</artifactId>
22     <version>0.5.0-SNAPSHOT</version>
23     <packaging>pom</packaging>
24     <prerequisites>
25         <maven>3.1.1</maven>
26     </prerequisites>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                 <groupId>org.opendaylight.aaa</groupId>
32                 <artifactId>aaa-artifacts</artifactId>
33                 <version>${project.version}</version>
34                 <scope>import</scope>
35                 <type>pom</type>
36             </dependency>
37         </dependencies>
38     </dependencyManagement>
39
40     <dependencies>
41         <!-- Basic Karaf dependencies -->
42         <dependency>
43             <groupId>org.apache.karaf.features</groupId>
44             <artifactId>framework</artifactId>
45             <type>kar</type>
46         </dependency>
47
48         <!-- Project local feautures -->
49         <dependency>
50             <groupId>org.opendaylight.aaa</groupId>
51             <artifactId>features-aaa</artifactId>
52             <classifier>features</classifier>
53             <type>xml</type>
54             <scope>runtime</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.aaa</groupId>
58             <artifactId>features-aaa-shiro</artifactId>
59             <classifier>features</classifier>
60             <type>xml</type>
61             <scope>runtime</scope>
62         </dependency>
63     </dependencies>
64
65     <build>
66         <plugins>
67             <!-- DO NOT install or deploy the karaf artifact -->
68             <plugin>
69                 <groupId>org.apache.maven.plugins</groupId>
70                 <artifactId>maven-install-plugin</artifactId>
71                 <configuration>
72                     <skip>true</skip>
73                 </configuration>
74             </plugin>
75             <plugin>
76                 <groupId>org.apache.maven.plugins</groupId>
77                 <artifactId>maven-deploy-plugin</artifactId>
78                 <configuration>
79                     <skip>true</skip>
80                 </configuration>
81             </plugin>
82         </plugins>
83     </build>
84
85     <scm>
86         <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
87         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
88         <tag>HEAD</tag>
89         <url>https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary</url>
90     </scm>
91 </project>