blob: e7e8310d3ab4539d28b695685152891b8127d6e2 [file] [log] [blame]
Shravan Ambatibb6b4452016-05-04 13:25:28 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2016-present Open Networking Foundation
Shravan Ambatibb6b4452016-05-04 13:25:28 -07004 ~
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.onosproject</groupId>
22 <artifactId>onos-kafka</artifactId>
Ray Milkey64677e92017-08-01 10:48:08 -070023 <version>1.11.0-SNAPSHOT</version>
Shravan Ambatibb6b4452016-05-04 13:25:28 -070024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>onos-app-kafka</artifactId>
28
Shravan Ambatibb6b4452016-05-04 13:25:28 -070029 <properties>
30 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31 <onos.version>${project.version}</onos.version>
32 <onos.app.name>org.onosproject.kafkaintegration</onos.app.name>
33 <onos.app.title>Kafka Integration Application</onos.app.title>
34 <onos.app.origin>Calix, Inc.</onos.app.origin>
35 <web.context>/onos/kafka</web.context>
36 <api.version>1.0.0</api.version>
37 <api.package>org.onosproject.kafkaintegration.rest</api.package>
Shravan Ambatibb6b4452016-05-04 13:25:28 -070038 <onos.app.category>Utility</onos.app.category>
39 <onos.app.url>https://wiki.onosproject.org/display/ONOS/Kafka+Integration</onos.app.url>
Shravan Ambatibb6b4452016-05-04 13:25:28 -070040 <onos.app.requires>org.onosproject.incubator.protobuf</onos.app.requires>
41 </properties>
42
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070043 <packaging>pom</packaging>
44 <description>
45 Kafka Integration Application.
46 This will export ONOS Events to Northbound Kafka Server.
47 </description>
48
49 <dependencies>
Shravan Ambatibb6b4452016-05-04 13:25:28 -070050
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-app-kafka-api</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070059 <artifactId>onos-app-kafka-core</artifactId>
Shravan Ambatibb6b4452016-05-04 13:25:28 -070060 <version>${project.version}</version>
61 </dependency>
62
63 <dependency>
64 <groupId>org.onosproject</groupId>
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070065 <artifactId>onos-app-kafka-web</artifactId>
Shravan Ambatibb6b4452016-05-04 13:25:28 -070066 <version>${project.version}</version>
67 </dependency>
68
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070069 <!--Also need to update the app.xml and the features.xml -->
Shravan Ambatibb6b4452016-05-04 13:25:28 -070070 <dependency>
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070071 <groupId>org.apache.servicemix.bundles</groupId>
72 <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
73 <version>0.8.2.2_1</version>
Shravan Ambatibb6b4452016-05-04 13:25:28 -070074 </dependency>
75
Shravan Ambatibb6b4452016-05-04 13:25:28 -070076 </dependencies>
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070077</project>