blob: b479b79b8a9ec00dd275b7d661330b363cc1b976 [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>
Jenkins98fe0272019-12-20 22:41:22 +000023 <version>1.10.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>
34 <onos.version>1.13.9-rc4</onos.version>
35 <onos.app.title>AAA App</onos.app.title>
36 <onos.app.category>Security</onos.app.category>
37 <onos.app.url>http://opencord.org</onos.app.url>
38 <onos.app.readme>802.1x authentication service.</onos.app.readme>
39 <onos.app.requires>
40 org.opencord.sadis
41 </onos.app.requires>
Matteo Scandolo1d6ca252019-12-20 13:53:14 -080042 <sadis.api.version>3.1.0</sadis.api.version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070043 </properties>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.opencord</groupId>
48 <artifactId>sadis-api</artifactId>
49 <version>${sadis.api.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.opencord</groupId>
53 <artifactId>aaa-api</artifactId>
Jenkins98fe0272019-12-20 22:41:22 +000054 <version>1.10.0</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070055 <scope>compile</scope>
56 </dependency>
57 </dependencies>
58
59 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
64 </plugin>
65
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-scr-plugin</artifactId>
69 </plugin>
70
71 <plugin>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-maven-plugin</artifactId>
74 <version>1.11</version>
kartikey dubeye1545422019-05-22 12:53:45 +000075 <executions>
76 <execution>
77 <id>cfg</id>
78 <phase>generate-resources</phase>
79 <goals>
80 <goal>cfg</goal>
81 </goals>
82 </execution>
83 </executions>
Matteo Scandolocf847b82019-04-26 15:00:00 -070084 </plugin>
85 </plugins>
86 </build>
87
88
kartikey dubeye1545422019-05-22 12:53:45 +000089</project>