blob: 9bf4f15a9a415f25ab9164590ea2e21cdfc8ee50 [file] [log] [blame]
Daniele Moro94660a02019-12-02 12:02:07 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2019-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 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.opencord</groupId>
24 <artifactId>bng</artifactId>
25 <version>1.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>bng-app</artifactId>
30
31 <packaging>bundle</packaging>
32 <description>BNG Control app</description>
33
34 <properties>
35 <onos.app.name>org.opencord.bng</onos.app.name>
36 <onos.app.title>BNG Control app</onos.app.title>
37 <onos.app.category>Traffic Steering</onos.app.category>
38 <onos.app.url>http://opencord.org</onos.app.url>
39 <onos.app.readme>
40 BNG app for controlling the BNG programmable device
41 </onos.app.readme>
42 <onos.app.requires>
43 org.opencord.sadis,
44 org.opencord.olt
45 </onos.app.requires>
46 </properties>
47
48 <dependencies>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-api</artifactId>
52 <version>${onos.version}</version>
53 <scope>provided</scope>
54 </dependency>
55
56 <dependency>
57 <groupId>org.opencord</groupId>
58 <artifactId>sadis-api</artifactId>
59 <version>${sadis.api.version}</version>
60 <scope>provided</scope>
61 </dependency>
62
63 <dependency>
64 <groupId>org.opencord</groupId>
65 <artifactId>bng-api</artifactId>
66 <version>${project.version}</version>
67 <scope>compile</scope>
68 </dependency>
69
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onlab-osgi</artifactId>
73 <version>${onos.version}</version>
74 <scope>provided</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onlab-misc</artifactId>
80 <version>${onos.version}</version>
81 <scope>test</scope>
82 <classifier>tests</classifier>
83 </dependency>
84
85 <dependency>
86 <groupId>org.onosproject</groupId>
87 <artifactId>onos-api</artifactId>
88 <version>${onos.version}</version>
89 <scope>test</scope>
90 <classifier>tests</classifier>
91 </dependency>
92
93 <dependency>
94 <groupId>org.onosproject</groupId>
95 <artifactId>onos-cli</artifactId>
96 <version>${onos.version}</version>
97 <scope>provided</scope>
98 </dependency>
99
100 <dependency>
101 <groupId>org.apache.karaf.shell</groupId>
102 <artifactId>org.apache.karaf.shell.console</artifactId>
103 <scope>provided</scope>
104 </dependency>
105
106 <dependency>
107 <groupId>org.opencord</groupId>
108 <artifactId>olt-api</artifactId>
109 <version>${olt.api.version}</version>
110 <scope>provided</scope>
111 </dependency>
112 </dependencies>
113
114 <build>
115 <plugins>
116 <plugin>
117 <groupId>org.onosproject</groupId>
118 <artifactId>onos-maven-plugin</artifactId>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.felix</groupId>
122 <artifactId>maven-bundle-plugin</artifactId>
123 <configuration>
124 <instructions>
125 <Karaf-Commands>org.opencord.bng.cli</Karaf-Commands>
126 </instructions>
127 </configuration>
128 </plugin>
129 </plugins>
130 </build>
131</project>