2019-06-21 04:17:41 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved.
|
|
|
|
|
|
|
|
This program and the accompanying materials are made available under the
|
|
|
|
terms of the Eclipse Public License v1.0 which accompanies this distribution,
|
|
|
|
and is available at http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
-->
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.opendaylight.odlparent</groupId>
|
|
|
|
<artifactId>karaf4-parent</artifactId>
|
2019-07-23 09:32:31 +00:00
|
|
|
<version>3.1.7</version>
|
2019-06-21 04:17:41 +00:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.opendaylight.aaa</groupId>
|
|
|
|
<artifactId>aaa-karaf</artifactId>
|
2019-07-23 09:32:31 +00:00
|
|
|
<version>0.8.3</version>
|
2019-06-21 04:17:41 +00:00
|
|
|
<name>ODL :: aaa :: ${project.artifactId}</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.opendaylight.aaa</groupId>
|
|
|
|
<artifactId>aaa-artifacts</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Basic Karaf dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.features</groupId>
|
|
|
|
<artifactId>framework</artifactId>
|
|
|
|
<type>kar</type>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Project local feautures -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.opendaylight.aaa</groupId>
|
|
|
|
<artifactId>features-aaa</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>features</classifier>
|
|
|
|
<type>xml</type>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- DO NOT install or deploy the karaf artifact -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
<url>https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary</url>
|
|
|
|
</scm>
|
|
|
|
</project>
|