blob: e309d3e67c285f693a34cb77a9f27297ca96616f [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>
Jenkinscba53102021-03-30 10:13:37 +000023 <version>2.3.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>
Matteo Scandolocf847b82019-04-26 15:00:00 -070038 </properties>
39
40 <dependencies>
41 <dependency>
Jonathan Hart612651f2019-11-25 09:21:43 -080042 <groupId>org.slf4j</groupId>
43 <artifactId>slf4j-simple</artifactId>
44 <version>1.7.25</version>
45 <scope>test</scope>
46 </dependency>
47
48 <dependency>
Matteo Scandolocf847b82019-04-26 15:00:00 -070049 <groupId>org.opencord</groupId>
50 <artifactId>sadis-api</artifactId>
51 <version>${sadis.api.version}</version>
Carmelo Cascone58b53292019-09-30 12:35:31 -070052 <scope>provided</scope>
Matteo Scandolocf847b82019-04-26 15:00:00 -070053 </dependency>
Carmelo Cascone58b53292019-09-30 12:35:31 -070054
Matteo Scandolocf847b82019-04-26 15:00:00 -070055 <dependency>
56 <groupId>org.opencord</groupId>
57 <artifactId>aaa-api</artifactId>
Ilayda Ozdemir9fdeee72021-02-26 12:24:27 +000058 <version>${aaa.api.version}</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070059 <scope>compile</scope>
60 </dependency>
Carmelo Cascone58b53292019-09-30 12:35:31 -070061
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-api</artifactId>
65 <version>${onos.version}</version>
66 <scope>provided</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.onosproject</groupId>
Jonathan Hartc41227c2020-01-28 16:56:49 -080071 <artifactId>onos-core-serializers</artifactId>
72 <version>${onos.version}</version>
73 <scope>provided</scope>
74 </dependency>
75
76 <dependency>
77 <groupId>org.onosproject</groupId>
Carmelo Cascone58b53292019-09-30 12:35:31 -070078 <artifactId>onos-api</artifactId>
79 <version>${onos.version}</version>
80 <classifier>tests</classifier>
81 <scope>test</scope>
82 </dependency>
83
84 <dependency>
85 <groupId>org.onosproject</groupId>
86 <artifactId>onlab-misc</artifactId>
87 <version>${onos.version}</version>
88 <scope>provided</scope>
89 </dependency>
90
91 <dependency>
92 <groupId>org.onosproject</groupId>
93 <artifactId>onlab-junit</artifactId>
94 <version>${onos.version}</version>
95 <scope>test</scope>
96 </dependency>
97
98 <dependency>
99 <groupId>org.onosproject</groupId>
100 <artifactId>onos-cli</artifactId>
101 <version>${onos.version}</version>
102 <scope>provided</scope>
103 </dependency>
104
105 <dependency>
106 <groupId>org.apache.karaf.shell</groupId>
107 <artifactId>org.apache.karaf.shell.core</artifactId>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700108 <scope>provided</scope>
109 </dependency>
110
111 <dependency>
112 <groupId>org.apache.karaf.shell</groupId>
113 <artifactId>org.apache.karaf.shell.console</artifactId>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700114 <scope>provided</scope>
115 </dependency>
Matteo Scandolocf847b82019-04-26 15:00:00 -0700116 </dependencies>
117
118 <build>
119 <plugins>
120 <plugin>
Matteo Scandolocf847b82019-04-26 15:00:00 -0700121 <groupId>org.onosproject</groupId>
122 <artifactId>onos-maven-plugin</artifactId>
Matteo Scandolocf847b82019-04-26 15:00:00 -0700123 </plugin>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700124
125 <plugin>
126 <groupId>org.apache.felix</groupId>
127 <artifactId>maven-bundle-plugin</artifactId>
128 <configuration>
129 <instructions>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700130 <Karaf-Commands>org.opencord.aaa.cli</Karaf-Commands>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700131 </instructions>
132 </configuration>
133 </plugin>
Matteo Scandolocf847b82019-04-26 15:00:00 -0700134 </plugins>
135 </build>
136
kartikey dubeye1545422019-05-22 12:53:45 +0000137</project>