blob: 52501ab3af599f94bc00aff6622224a65987ed99 [file] [log] [blame]
Ari Saha89831742015-06-26 10:31:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor4e33be22017-08-03 22:45:46 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
Charles Chanfd32a972016-12-14 16:14:50 -080024 <artifactId>onos-dependencies</artifactId>
David K. Bainbridge39aea432017-09-07 14:00:29 -070025 <version>1.10.6</version>
Hyunsun Moon55e89a22016-10-27 11:23:19 -070026 <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>
David K. Bainbridge44d26782017-09-08 12:03:14 -070031 <version>1.4.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>
David K. Bainbridge39aea432017-09-07 14:00:29 -070038 <onos.version>1.10.6</onos.version>
alshabib6d527452016-06-01 18:00:47 -070039 <onos.app.title>AAA App</onos.app.title>
Charles Chanfd32a972016-12-14 16:14:50 -080040 <onos.app.category>Security</onos.app.category>
alshabib6d527452016-06-01 18:00:47 -070041 <onos.app.url>http://opencord.org</onos.app.url>
Charles Chanfd32a972016-12-14 16:14:50 -080042 <onos.app.readme>802.1x authentication service.</onos.app.readme>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010043 <onos.app.requires>
44 org.onosproject.olt,
45 org.opencord.sadis
46 </onos.app.requires>
David K. Bainbridge44d26782017-09-08 12:03:14 -070047 <sadis.api.version>1.2.0-SNAPSHOT</sadis.api.version>
48 <olt.api.version>1.4.0-SNAPSHOT</olt.api.version>
David K. Bainbridgec87de3e2017-08-17 09:54:39 -070049 <!-- TODO onos-build-conf.version can be dropped when onos.version > 1.10.3 -->
50 <onos-build-conf.version>1.10.3-onf</onos-build-conf.version>
alshabib6d527452016-06-01 18:00:47 -070051 </properties>
52
Ari Saha89831742015-06-26 10:31:48 -070053 <dependencies>
54 <dependency>
Ari Saha89831742015-06-26 10:31:48 -070055 <groupId>org.onosproject</groupId>
Ari Saha89831742015-06-26 10:31:48 -070056 <artifactId>onos-api</artifactId>
alshabib6d527452016-06-01 18:00:47 -070057 <version>${onos.version}</version>
Ari Saha89831742015-06-26 10:31:48 -070058 </dependency>
59
Ari Saha89831742015-06-26 10:31:48 -070060 <dependency>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010061 <groupId>org.opencord</groupId>
62 <artifactId>sadis-api</artifactId>
David K. Bainbridge96f79c92017-08-10 09:11:48 -070063 <version>${sadis.api.version}</version>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010064 </dependency>
65
66 <dependency>
67 <groupId>org.opencord</groupId>
68 <artifactId>olt-api</artifactId>
David K. Bainbridge96f79c92017-08-10 09:11:48 -070069 <version>${olt.api.version}</version>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010070 </dependency>
71
72 <dependency>
Ari Saha89831742015-06-26 10:31:48 -070073 <groupId>org.onosproject</groupId>
Ray Milkeyea366452015-09-30 10:56:43 -070074 <artifactId>onos-api</artifactId>
alshabib6d527452016-06-01 18:00:47 -070075 <version>${onos.version}</version>
Ray Milkeyea366452015-09-30 10:56:43 -070076 <classifier>tests</classifier>
77 <scope>test</scope>
78 </dependency>
Qianqian Hu61a6a402016-02-16 15:18:05 +080079
80 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-cli</artifactId>
alshabib6d527452016-06-01 18:00:47 -070083 <version>${onos.version}</version>
Qianqian Hu61a6a402016-02-16 15:18:05 +080084 </dependency>
85
86 <dependency>
alshabib6d527452016-06-01 18:00:47 -070087 <groupId>org.onosproject</groupId>
88 <artifactId>onlab-junit</artifactId>
89 <version>${onos.version}</version>
90 </dependency>
alshabib3c4d3762016-09-27 14:25:28 -070091
Ari Saha89831742015-06-26 10:31:48 -070092 </dependencies>
93
Ray Milkeyea366452015-09-30 10:56:43 -070094 <build>
Ari Saha89831742015-06-26 10:31:48 -070095 <plugins>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-bundle-plugin</artifactId>
99 </plugin>
100
101 <plugin>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>maven-scr-plugin</artifactId>
104 </plugin>
Charles Chanfd32a972016-12-14 16:14:50 -0800105
Ari Saha89831742015-06-26 10:31:48 -0700106 <plugin>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onos-maven-plugin</artifactId>
109 </plugin>
110 </plugins>
111 </build>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +0100112
113 <repositories>
114 <repository>
115 <id>central</id>
116 <name>Central Repository</name>
117 <url>http://repo.maven.apache.org/maven2</url>
118 <layout>default</layout>
119 <snapshots>
120 <enabled>false</enabled>
121 </snapshots>
122 <releases>
123 <enabled>true</enabled>
124 <updatePolicy>always</updatePolicy>
125 <checksumPolicy>fail</checksumPolicy>
126 </releases>
127 </repository>
128
129 <repository>
130 <id>snapshots</id>
131 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
132 <snapshots>
133 <enabled>true</enabled>
134 <updatePolicy>always</updatePolicy>
135 <checksumPolicy>fail</checksumPolicy>
136 </snapshots>
137 </repository>
138 </repositories>
Ari Saha89831742015-06-26 10:31:48 -0700139</project>