blob: 4693a56ab18d31177d56b1e22df423db85bd71df [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>
48 <artifactId>onos-app-xos-integration</artifactId>
49 <version>${project.version}</version>
50 </dependency>
Ray Milkey911c5192015-09-30 10:56:43 -070051
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onlab-junit</artifactId>
55 <scope>test</scope>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onlab-osgi</artifactId>
61 <version>${project.version}</version>
62 <classifier>tests</classifier>
63 <scope>test</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 <version>${project.version}</version>
70 <classifier>tests</classifier>
71 <scope>test</scope>
72 </dependency>
Ari Saha79d7c252015-06-26 10:31:48 -070073 </dependencies>
74
75
Ray Milkey911c5192015-09-30 10:56:43 -070076 <build>
Ari Saha79d7c252015-06-26 10:31:48 -070077 <plugins>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 </plugin>
82
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-scr-plugin</artifactId>
86 </plugin>
87 <plugin>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onos-maven-plugin</artifactId>
90 </plugin>
91 </plugins>
92 </build>
93</project>