blob: 918b62922a6abafd9850ec912761986dc9e91463 [file] [log] [blame]
Matteo Scandolocf847b82019-04-26 15:00:00 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-present Open Networking Foundation
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/xsd/maven-4.0.0.xsd">
20 <parent>
21 <artifactId>aaa</artifactId>
22 <groupId>org.opencord</groupId>
Jenkins784bce52020-01-08 18:06:30 +000023 <version>2.0.0</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>aaa-app</artifactId>
28
29 <packaging>bundle</packaging>
30 <description>AAA application for CORD</description>
31
32 <properties>
33 <onos.app.name>org.opencord.aaa</onos.app.name>
Matteo Scandolocf847b82019-04-26 15:00:00 -070034 <onos.app.title>AAA App</onos.app.title>
35 <onos.app.category>Security</onos.app.category>
36 <onos.app.url>http://opencord.org</onos.app.url>
37 <onos.app.readme>802.1x authentication service.</onos.app.readme>
38 <onos.app.requires>
39 org.opencord.sadis
40 </onos.app.requires>
Matteo Scandolo3498bc02020-01-08 09:54:12 -080041 <sadis.api.version>4.0.1</sadis.api.version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070042 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.opencord</groupId>
47 <artifactId>sadis-api</artifactId>
48 <version>${sadis.api.version}</version>
Carmelo Cascone58b53292019-09-30 12:35:31 -070049 <scope>provided</scope>
Matteo Scandolocf847b82019-04-26 15:00:00 -070050 </dependency>
Carmelo Cascone58b53292019-09-30 12:35:31 -070051
Matteo Scandolocf847b82019-04-26 15:00:00 -070052 <dependency>
53 <groupId>org.opencord</groupId>
54 <artifactId>aaa-api</artifactId>
Carmelo Cascone58b53292019-09-30 12:35:31 -070055 <version>${project.version}</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070056 <scope>compile</scope>
57 </dependency>
Carmelo Cascone58b53292019-09-30 12:35:31 -070058
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-api</artifactId>
62 <version>${onos.version}</version>
63 <scope>provided</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 <version>${onos.version}</version>
70 <classifier>tests</classifier>
71 <scope>test</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onlab-misc</artifactId>
77 <version>${onos.version}</version>
78 <scope>provided</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onlab-junit</artifactId>
84 <version>${onos.version}</version>
85 <scope>test</scope>
86 </dependency>
87
88 <dependency>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onos-cli</artifactId>
91 <version>${onos.version}</version>
92 <scope>provided</scope>
93 </dependency>
94
95 <dependency>
96 <groupId>org.apache.karaf.shell</groupId>
97 <artifactId>org.apache.karaf.shell.core</artifactId>
Carmelo Cascone58b53292019-09-30 12:35:31 -070098 <scope>provided</scope>
99 </dependency>
100
101 <dependency>
102 <groupId>org.apache.karaf.shell</groupId>
103 <artifactId>org.apache.karaf.shell.console</artifactId>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700104 <scope>provided</scope>
105 </dependency>
Matteo Scandolocf847b82019-04-26 15:00:00 -0700106 </dependencies>
107
108 <build>
109 <plugins>
110 <plugin>
Matteo Scandolocf847b82019-04-26 15:00:00 -0700111 <groupId>org.onosproject</groupId>
112 <artifactId>onos-maven-plugin</artifactId>
Matteo Scandolocf847b82019-04-26 15:00:00 -0700113 </plugin>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700114
115 <plugin>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-bundle-plugin</artifactId>
118 <configuration>
119 <instructions>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700120 <Karaf-Commands>org.opencord.aaa.cli</Karaf-Commands>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700121 </instructions>
122 </configuration>
123 </plugin>
Matteo Scandolocf847b82019-04-26 15:00:00 -0700124 </plugins>
125 </build>
126
kartikey dubeye1545422019-05-22 12:53:45 +0000127</project>