blob: b03930a90ec4dd4197283b72666d6b25a2922443 [file] [log] [blame]
Ari Saha79d7c252015-06-26 10:31:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 Open Networking Laboratory
4 ~
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
22
23 <parent>
24 <groupId>org.onosproject</groupId>
25 <artifactId>onos-apps</artifactId>
Brian O'Connor905ea222015-12-04 23:59:23 -080026 <version>1.4.0-SNAPSHOT</version>
Ari Saha79d7c252015-06-26 10:31:48 -070027 <relativePath>../pom.xml</relativePath>
28 </parent>
29
30 <artifactId>onos-app-aaa</artifactId>
31 <packaging>bundle</packaging>
32
33 <description>ONOS authentication application</description>
34
35 <properties>
36 <onos.app.name>org.onosproject.aaa</onos.app.name>
37 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.compendium</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
Ari Saha79d7c252015-06-26 10:31:48 -070047 <artifactId>onos-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50
Ari Saha79d7c252015-06-26 10:31:48 -070051 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-app-xos-integration</artifactId>
54 <version>${project.version}</version>
55 </dependency>
Ray Milkey911c5192015-09-30 10:56:43 -070056
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-junit</artifactId>
60 <scope>test</scope>
61 </dependency>
62
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-osgi</artifactId>
66 <version>${project.version}</version>
67 <classifier>tests</classifier>
68 <scope>test</scope>
69 </dependency>
70
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-api</artifactId>
74 <version>${project.version}</version>
75 <classifier>tests</classifier>
76 <scope>test</scope>
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>