blob: ba170a4e0c7e90115c1f7e819ee4dec4f94063b1 [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. Bainbridgee7a288f2017-08-15 15:25:48 -070025 <version>1.8.9</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. Bainbridgee8f16b82017-08-16 15:20:22 -070031 <version>1.2.1-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. Bainbridgee7a288f2017-08-15 15:25:48 -070038 <onos.version>1.8.9</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. Bainbridgee8f16b82017-08-16 15:20:22 -070047 <sadis.api.version>1.0.1-SNAPSHOT</sadis.api.version>
48 <olt.api.version>1.2.1-SNAPSHOT</olt.api.version>
alshabib6d527452016-06-01 18:00:47 -070049 </properties>
50
Ari Saha89831742015-06-26 10:31:48 -070051 <dependencies>
52 <dependency>
Ari Saha89831742015-06-26 10:31:48 -070053 <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>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010059 <groupId>org.opencord</groupId>
60 <artifactId>sadis-api</artifactId>
David K. Bainbridge96f79c92017-08-10 09:11:48 -070061 <version>${sadis.api.version}</version>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010062 </dependency>
63
64 <dependency>
65 <groupId>org.opencord</groupId>
66 <artifactId>olt-api</artifactId>
David K. Bainbridge96f79c92017-08-10 09:11:48 -070067 <version>${olt.api.version}</version>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010068 </dependency>
69
70 <dependency>
Ari Saha89831742015-06-26 10:31:48 -070071 <groupId>org.onosproject</groupId>
Ray Milkeyea366452015-09-30 10:56:43 -070072 <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>
alshabib6d527452016-06-01 18:00:47 -070085 <groupId>org.onosproject</groupId>
86 <artifactId>onlab-junit</artifactId>
87 <version>${onos.version}</version>
88 </dependency>
alshabib3c4d3762016-09-27 14:25:28 -070089
Ari Saha89831742015-06-26 10:31:48 -070090 </dependencies>
91
Ray Milkeyea366452015-09-30 10:56:43 -070092 <build>
Ari Saha89831742015-06-26 10:31:48 -070093 <plugins>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-bundle-plugin</artifactId>
97 </plugin>
98
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-scr-plugin</artifactId>
102 </plugin>
Charles Chanfd32a972016-12-14 16:14:50 -0800103
Ari Saha89831742015-06-26 10:31:48 -0700104 <plugin>
105 <groupId>org.onosproject</groupId>
106 <artifactId>onos-maven-plugin</artifactId>
107 </plugin>
108 </plugins>
109 </build>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +0100110
111 <repositories>
112 <repository>
113 <id>central</id>
114 <name>Central Repository</name>
115 <url>http://repo.maven.apache.org/maven2</url>
116 <layout>default</layout>
117 <snapshots>
118 <enabled>false</enabled>
119 </snapshots>
120 <releases>
121 <enabled>true</enabled>
122 <updatePolicy>always</updatePolicy>
123 <checksumPolicy>fail</checksumPolicy>
124 </releases>
125 </repository>
126
127 <repository>
128 <id>snapshots</id>
129 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
130 <snapshots>
131 <enabled>true</enabled>
132 <updatePolicy>always</updatePolicy>
133 <checksumPolicy>fail</checksumPolicy>
134 </snapshots>
135 </repository>
136 </repositories>
Ari Saha89831742015-06-26 10:31:48 -0700137</project>