blob: ad2c90b32fe4d43cd536492315353ceef10ef247 [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
Andrea Campanella37f07e42021-02-16 11:24:39 +010032 <dependencies>
33 <dependency>
34 <groupId>org.opencord</groupId>
35 <artifactId>olt-api</artifactId>
36 <version>${olt.api.version}</version>
37 <scope>compile</scope>
38 </dependency>
39
40 <dependency>
41 <groupId>org.opencord</groupId>
42 <artifactId>sadis-api</artifactId>
43 <version>${sadis.api.version}</version>
44 <scope>provided</scope>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-cli</artifactId>
50 <version>${onos.version}</version>
51 <scope>provided</scope>
52 </dependency>
53
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-api</artifactId>
57 <version>${onos.version}</version>
58 <classifier>tests</classifier>
59 <scope>test</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-core-serializers</artifactId>
65 <version>${onos.version}</version>
66 <scope>provided</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.apache.karaf.shell</groupId>
71 <artifactId>org.apache.karaf.shell.console</artifactId>
72 <scope>provided</scope>
73 </dependency>
74
75 <dependency>
76 <groupId>org.apache.karaf.shell</groupId>
77 <artifactId>org.apache.karaf.shell.core</artifactId>
78 <scope>provided</scope>
79 </dependency>
80
Ilayda Ozdemir90a93622021-02-25 09:40:58 +000081 <dependency>
82 <groupId>com.fasterxml.jackson.core</groupId>
83 <artifactId>jackson-databind</artifactId>
84 <version>2.10.2</version>
85 <scope>provided</scope>
86 </dependency>
87
Andrea Campanella37f07e42021-02-16 11:24:39 +010088 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onos-maven-plugin</artifactId>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-bundle-plugin</artifactId>
99 <configuration>
100 <instructions>
101 <Karaf-Commands>org.opencord.olt.cli</Karaf-Commands>
102 </instructions>
103 </configuration>
104 </plugin>
105 </plugins>
106 </build>
107</project>