2019-06-21 04:17:41 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (c) 2015 Inocybe Technology 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 INTERNAL
|
|
|
|
-->
|
2019-07-23 09:32:31 +00:00
|
|
|
<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">
|
2019-06-21 04:17:41 +00:00
|
|
|
|
|
|
|
<parent>
|
2019-07-23 09:32:31 +00:00
|
|
|
<groupId>org.opendaylight.aaa</groupId>
|
|
|
|
<artifactId>aaa-parent</artifactId>
|
|
|
|
<version>0.8.3</version>
|
|
|
|
<relativePath>../parent</relativePath>
|
2019-06-21 04:17:41 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.opendaylight.aaa</groupId>
|
|
|
|
<artifactId>aaa-cli</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>bundle</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>aaa-cert</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.opendaylight.aaa</groupId>
|
|
|
|
<artifactId>aaa-authn-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.shell</groupId>
|
|
|
|
<artifactId>org.apache.karaf.shell.console</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.opendaylight.aaa</groupId>
|
|
|
|
<artifactId>aaa-shiro</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Testing Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2019-07-23 09:32:31 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Karaf-Commands>org.opendaylight.aaa.cli*</Karaf-Commands>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-06-21 04:17:41 +00:00
|
|
|
</project>
|