blob: 99f4b4e9f9ab273ea227e35e29e6b0bdfbc14c34 [file] [log] [blame]
Andrea Campanella37f07e42021-02-16 11:24:39 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-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 <groupId>org.opencord</groupId>
22 <artifactId>olt</artifactId>
23 <version>4.4.0-SNAPSHOT</version>
24 <relativePath>../pom.xml</relativePath>
25 </parent>
26
27 <modelVersion>4.0.0</modelVersion>
28 <artifactId>olt-impl</artifactId>
29 <packaging>bundle</packaging>
30 <description>OLT application for CORD</description>
31
32 <properties>
33 <olt.api.version>${project.version}</olt.api.version>
34 </properties>
35
36 <dependencies>
37 <dependency>
38 <groupId>org.opencord</groupId>
39 <artifactId>olt-api</artifactId>
40 <version>${olt.api.version}</version>
41 <scope>compile</scope>
42 </dependency>
43
44 <dependency>
45 <groupId>org.opencord</groupId>
46 <artifactId>sadis-api</artifactId>
47 <version>${sadis.api.version}</version>
48 <scope>provided</scope>
49 </dependency>
50
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-cli</artifactId>
54 <version>${onos.version}</version>
55 <scope>provided</scope>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-api</artifactId>
61 <version>${onos.version}</version>
62 <classifier>tests</classifier>
63 <scope>test</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-core-serializers</artifactId>
69 <version>${onos.version}</version>
70 <scope>provided</scope>
71 </dependency>
72
73 <dependency>
74 <groupId>org.apache.karaf.shell</groupId>
75 <artifactId>org.apache.karaf.shell.console</artifactId>
76 <scope>provided</scope>
77 </dependency>
78
79 <dependency>
80 <groupId>org.apache.karaf.shell</groupId>
81 <artifactId>org.apache.karaf.shell.core</artifactId>
82 <scope>provided</scope>
83 </dependency>
84
85 </dependencies>
86
87 <build>
88 <plugins>
89 <plugin>
90 <groupId>org.onosproject</groupId>
91 <artifactId>onos-maven-plugin</artifactId>
92 </plugin>
93 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-bundle-plugin</artifactId>
96 <configuration>
97 <instructions>
98 <Karaf-Commands>org.opencord.olt.cli</Karaf-Commands>
99 </instructions>
100 </configuration>
101 </plugin>
102 </plugins>
103 </build>
104</project>