Merge "introduce aaa.web.testutils with WebTestModule & TestWebClient"
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>karaf4-parent</artifactId>
15         <version>4.0.8</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.aaa</groupId>
20     <artifactId>aaa-karaf</artifactId>
21     <version>0.9.0-SNAPSHOT</version>
22     <name>ODL :: aaa :: ${project.artifactId}</name>
23     <packaging>pom</packaging>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.aaa</groupId>
29                 <artifactId>aaa-artifacts</artifactId>
30                 <version>${project.version}</version>
31                 <scope>import</scope>
32                 <type>pom</type>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <!-- Basic Karaf dependencies -->
39         <dependency>
40             <groupId>org.apache.karaf.features</groupId>
41             <artifactId>framework</artifactId>
42             <type>kar</type>
43         </dependency>
44
45         <!-- Project local feautures -->
46         <dependency>
47             <groupId>org.opendaylight.aaa</groupId>
48             <artifactId>features-aaa</artifactId>
49             <version>${project.version}</version>
50             <classifier>features</classifier>
51             <type>xml</type>
52             <scope>runtime</scope>
53         </dependency>
54     </dependencies>
55
56     <build>
57         <plugins>
58             <!-- DO NOT install or deploy the karaf artifact -->
59             <plugin>
60                 <groupId>org.apache.maven.plugins</groupId>
61                 <artifactId>maven-install-plugin</artifactId>
62                 <configuration>
63                     <skip>true</skip>
64                 </configuration>
65             </plugin>
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-deploy-plugin</artifactId>
69                 <configuration>
70                     <skip>true</skip>
71                 </configuration>
72             </plugin>
73         </plugins>
74     </build>
75
76     <scm>
77         <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
78         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
79         <tag>HEAD</tag>
80         <url>https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary</url>
81     </scm>
82 </project>