blob: ec37c805f517e5e1a41d26463fbaac1dfa5aaa82 [file] [log] [blame]
Ari Saha79d7c252015-06-26 10:31:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present 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'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.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>
Qianqian Hubf15a5a2016-02-16 15:18:05 +080067
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-cli</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73
74 <dependency>
75 <groupId>org.apache.karaf.shell</groupId>
76 <artifactId>org.apache.karaf.shell.console</artifactId>
77 </dependency>
Ari Saha79d7c252015-06-26 10:31:48 -070078 </dependencies>
79
80
Ray Milkey911c5192015-09-30 10:56:43 -070081 <build>
Ari Saha79d7c252015-06-26 10:31:48 -070082 <plugins>
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-bundle-plugin</artifactId>
86 </plugin>
87
88 <plugin>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>maven-scr-plugin</artifactId>
91 </plugin>
92 <plugin>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onos-maven-plugin</artifactId>
95 </plugin>
96 </plugins>
97 </build>
98</project>