blob: e8d7265a416bbb17ce6e76b42d629d84cc6eff9d [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
alshabib5f979512016-06-21 13:14:01 +020015 ~ limitations under the License.
Ari Saha89831742015-06-26 10:31:48 -070016 -->
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>
Hyunsun Moon55e89a22016-10-27 11:23:19 -070025 <version>1.7.1</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>
alshabib66620772016-08-03 14:06:00 -070031 <version>1.1-SNAPSHOT</version>
Ari Saha89831742015-06-26 10:31:48 -070032 <packaging>bundle</packaging>
33
alshabib71c24e62016-07-09 11:34:16 +020034 <!--
alshabibcc4b7682016-06-02 21:53:02 -070035 <repositories>
36 <repository>
37 <id>oss-staging</id>
38 <name>OSS Staging</name>
39 <url>https://oss.sonatype.org/content/groups/staging</url>
40 </repository>
41 </repositories>
alshabib71c24e62016-07-09 11:34:16 +020042-->
alshabibcc4b7682016-06-02 21:53:02 -070043
Ari Saha89831742015-06-26 10:31:48 -070044 <description>ONOS authentication application</description>
45
alshabib6d527452016-06-01 18:00:47 -070046 <properties>
47 <onos.app.name>org.opencord.aaa</onos.app.name>
Hyunsun Moon55e89a22016-10-27 11:23:19 -070048 <onos.version>1.7.1</onos.version>
alshabib6d527452016-06-01 18:00:47 -070049 <onos.app.title>AAA App</onos.app.title>
50 <onos.app.category>Traffic Steering</onos.app.category>
51 <onos.app.url>http://opencord.org</onos.app.url>
52 <onos.app.readme>IGMP implementation.</onos.app.readme>
53 <onos.app.requires>org.opencord.config</onos.app.requires>
54 </properties>
55
Ari Saha89831742015-06-26 10:31:48 -070056 <dependencies>
57 <dependency>
58 <groupId>org.osgi</groupId>
59 <artifactId>org.osgi.compendium</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>org.onosproject</groupId>
Ari Saha89831742015-06-26 10:31:48 -070064 <artifactId>onos-api</artifactId>
alshabib6d527452016-06-01 18:00:47 -070065 <version>${onos.version}</version>
Ari Saha89831742015-06-26 10:31:48 -070066 </dependency>
67
Ari Saha89831742015-06-26 10:31:48 -070068 <dependency>
69 <groupId>org.onosproject</groupId>
Ray Milkeyea366452015-09-30 10:56:43 -070070 <artifactId>onlab-osgi</artifactId>
alshabib6d527452016-06-01 18:00:47 -070071 <version>${onos.version}</version>
Ray Milkeyea366452015-09-30 10:56:43 -070072 </dependency>
73
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-api</artifactId>
alshabib6d527452016-06-01 18:00:47 -070077 <version>${onos.version}</version>
Ray Milkeyea366452015-09-30 10:56:43 -070078 <classifier>tests</classifier>
79 <scope>test</scope>
80 </dependency>
Qianqian Hu61a6a402016-02-16 15:18:05 +080081
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onos-cli</artifactId>
alshabib6d527452016-06-01 18:00:47 -070085 <version>${onos.version}</version>
Qianqian Hu61a6a402016-02-16 15:18:05 +080086 </dependency>
87
88 <dependency>
89 <groupId>org.apache.karaf.shell</groupId>
90 <artifactId>org.apache.karaf.shell.console</artifactId>
91 </dependency>
alshabib6d527452016-06-01 18:00:47 -070092
93 <dependency>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>org.apache.felix.scr.annotations</artifactId>
96 <scope>provided</scope>
97 </dependency>
98
99 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
100 <dependency>
101 <groupId>org.onosproject</groupId>
102 <artifactId>onos-incubator-api</artifactId>
103 <version>${onos.version}</version>
104 </dependency>
105
106 <dependency>
107 <groupId>org.onosproject</groupId>
alshabib3c4d3762016-09-27 14:25:28 -0700108 <artifactId>onos-incubator-net</artifactId>
109 <version>${onos.version}</version>
110 </dependency>
111
112 <dependency>
113 <groupId>org.onosproject</groupId>
alshabib6d527452016-06-01 18:00:47 -0700114 <artifactId>onos-core-common</artifactId>
115 <version>${onos.version}</version>
116 </dependency>
117
118 <dependency>
119 <groupId>org.onosproject</groupId>
120 <artifactId>onlab-misc</artifactId>
121 <version>${onos.version}</version>
122 </dependency>
123
124 <dependency>
125 <groupId>org.onosproject</groupId>
126 <artifactId>onlab-junit</artifactId>
127 <version>${onos.version}</version>
128 </dependency>
alshabib3c4d3762016-09-27 14:25:28 -0700129
Ari Saha89831742015-06-26 10:31:48 -0700130 </dependencies>
131
132
Ray Milkeyea366452015-09-30 10:56:43 -0700133 <build>
Ari Saha89831742015-06-26 10:31:48 -0700134 <plugins>
135 <plugin>
136 <groupId>org.apache.felix</groupId>
137 <artifactId>maven-bundle-plugin</artifactId>
138 </plugin>
139
140 <plugin>
141 <groupId>org.apache.felix</groupId>
142 <artifactId>maven-scr-plugin</artifactId>
143 </plugin>
144 <plugin>
145 <groupId>org.onosproject</groupId>
146 <artifactId>onos-maven-plugin</artifactId>
147 </plugin>
148 </plugins>
149 </build>
150</project>