blob: 7591ccee048f07f7e76a459ce66863c01a96d442 [file] [log] [blame]
Ari Saha79d7c252015-06-26 10:31:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Lic35415d2016-01-14 17:22:31 -08003 ~ Copyright 2014-2016 Open Networking Laboratory
Ari Saha79d7c252015-06-26 10:31:48 -07004 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
Ari Saha79d7c252015-06-26 10:31:48 -070022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-apps</artifactId>
Brian O'Connor880dc20d2015-12-16 22:53:14 -080025 <version>1.5.0-SNAPSHOT</version>
Ari Saha79d7c252015-06-26 10:31:48 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-aaa</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONOS authentication application</description>
33
Ari Saha79d7c252015-06-26 10:31:48 -070034 <dependencies>
35 <dependency>
36 <groupId>org.osgi</groupId>
37 <artifactId>org.osgi.compendium</artifactId>
38 </dependency>
39
40 <dependency>
41 <groupId>org.onosproject</groupId>
Ari Saha79d7c252015-06-26 10:31:48 -070042 <artifactId>onos-api</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45
Ari Saha79d7c252015-06-26 10:31:48 -070046 <dependency>
47 <groupId>org.onosproject</groupId>
Ray Milkey911c5192015-09-30 10:56:43 -070048 <artifactId>onlab-junit</artifactId>
49 <scope>test</scope>
50 </dependency>
51
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onlab-osgi</artifactId>
55 <version>${project.version}</version>
56 <classifier>tests</classifier>
57 <scope>test</scope>
58 </dependency>
59
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onos-api</artifactId>
63 <version>${project.version}</version>
64 <classifier>tests</classifier>
65 <scope>test</scope>
66 </dependency>
Ari Saha79d7c252015-06-26 10:31:48 -070067 </dependencies>
68
69
Ray Milkey911c5192015-09-30 10:56:43 -070070 <build>
Ari Saha79d7c252015-06-26 10:31:48 -070071 <plugins>
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
75 </plugin>
76
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-scr-plugin</artifactId>
80 </plugin>
81 <plugin>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onos-maven-plugin</artifactId>
84 </plugin>
85 </plugins>
86 </build>
87</project>