blob: 171836b332b83df3a526efcf88dcc5d6b7d0ffee [file] [log] [blame]
Ari Saha89831742015-06-26 10:31:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor3554ccb2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Ari Saha89831742015-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 Saha89831742015-06-26 10:31:48 -070022 <parent>
23 <groupId>org.onosproject</groupId>
alshabib6d527452016-06-01 18:00:47 -070024 <artifactId>onos</artifactId>
25 <version>1.6.0-SNAPSHOT</version>
26 <relativePath></relativePath>
Ari Saha89831742015-06-26 10:31:48 -070027 </parent>
28
alshabib6d527452016-06-01 18:00:47 -070029 <groupId>org.opencord</groupId>
30 <artifactId>aaa</artifactId>
31 <version>1.0-SNAPSHOT</version>
Ari Saha89831742015-06-26 10:31:48 -070032 <packaging>bundle</packaging>
33
34 <description>ONOS authentication application</description>
35
alshabib6d527452016-06-01 18:00:47 -070036 <properties>
37 <onos.app.name>org.opencord.aaa</onos.app.name>
38 <onos.version>1.6.0-SNAPSHOT</onos.version>
39 <onos.app.title>AAA App</onos.app.title>
40 <onos.app.category>Traffic Steering</onos.app.category>
41 <onos.app.url>http://opencord.org</onos.app.url>
42 <onos.app.readme>IGMP implementation.</onos.app.readme>
43 <onos.app.requires>org.opencord.config</onos.app.requires>
44 </properties>
45
Ari Saha89831742015-06-26 10:31:48 -070046 <dependencies>
47 <dependency>
48 <groupId>org.osgi</groupId>
49 <artifactId>org.osgi.compendium</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.onosproject</groupId>
Ari Saha89831742015-06-26 10:31:48 -070054 <artifactId>onos-api</artifactId>
alshabib6d527452016-06-01 18:00:47 -070055 <version>${onos.version}</version>
Ari Saha89831742015-06-26 10:31:48 -070056 </dependency>
57
Ari Saha89831742015-06-26 10:31:48 -070058 <dependency>
59 <groupId>org.onosproject</groupId>
Ray Milkeyea366452015-09-30 10:56:43 -070060 <artifactId>onlab-junit</artifactId>
61 <scope>test</scope>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-osgi</artifactId>
alshabib6d527452016-06-01 18:00:47 -070067 <version>${onos.version}</version>
Ray Milkeyea366452015-09-30 10:56:43 -070068 </dependency>
69
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-api</artifactId>
alshabib6d527452016-06-01 18:00:47 -070073 <version>${onos.version}</version>
Ray Milkeyea366452015-09-30 10:56:43 -070074 <classifier>tests</classifier>
75 <scope>test</scope>
76 </dependency>
Qianqian Hu61a6a402016-02-16 15:18:05 +080077
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onos-cli</artifactId>
alshabib6d527452016-06-01 18:00:47 -070081 <version>${onos.version}</version>
Qianqian Hu61a6a402016-02-16 15:18:05 +080082 </dependency>
83
84 <dependency>
85 <groupId>org.apache.karaf.shell</groupId>
86 <artifactId>org.apache.karaf.shell.console</artifactId>
87 </dependency>
alshabib6d527452016-06-01 18:00:47 -070088
89 <dependency>
90 <groupId>org.apache.felix</groupId>
91 <artifactId>org.apache.felix.scr.annotations</artifactId>
92 <scope>provided</scope>
93 </dependency>
94
95 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
96 <dependency>
97 <groupId>org.onosproject</groupId>
98 <artifactId>onos-incubator-api</artifactId>
99 <version>${onos.version}</version>
100 </dependency>
101
102 <dependency>
103 <groupId>org.onosproject</groupId>
104 <artifactId>onos-core-common</artifactId>
105 <version>${onos.version}</version>
106 </dependency>
107
108 <dependency>
109 <groupId>org.onosproject</groupId>
110 <artifactId>onlab-misc</artifactId>
111 <version>${onos.version}</version>
112 </dependency>
113
114 <dependency>
115 <groupId>org.onosproject</groupId>
116 <artifactId>onlab-junit</artifactId>
117 <version>${onos.version}</version>
118 </dependency>
Ari Saha89831742015-06-26 10:31:48 -0700119 </dependencies>
120
121
Ray Milkeyea366452015-09-30 10:56:43 -0700122 <build>
Ari Saha89831742015-06-26 10:31:48 -0700123 <plugins>
124 <plugin>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>maven-bundle-plugin</artifactId>
127 </plugin>
128
129 <plugin>
130 <groupId>org.apache.felix</groupId>
131 <artifactId>maven-scr-plugin</artifactId>
132 </plugin>
133 <plugin>
134 <groupId>org.onosproject</groupId>
135 <artifactId>onos-maven-plugin</artifactId>
136 </plugin>
137 </plugins>
138 </build>
139</project>