blob: 683e9c7a53cc3ec76ed29784d45e725271a9f496 [file] [log] [blame]
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-present Open Networking Laboratory
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
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-kafka</artifactId>
Ray Milkey08b03a92017-05-15 11:26:33 -070024 <version>1.11.0-SNAPSHOT</version>
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
28 <artifactId>onos-app-kafka-core</artifactId>
29
30 <packaging>bundle</packaging>
31 <description>
32 Kafka Integration Application.
Shravan Ambati5a11e172016-07-21 15:55:28 -070033 This module is exclusive of REST calls and is only for the implementation
34 of the Application.
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070035 </description>
36
37 <dependencies>
38
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-api</artifactId>
42 </dependency>
43
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-app-kafka-api</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>org.osgi</groupId>
52 <artifactId>org.osgi.core</artifactId>
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070053 </dependency>
54
55 <dependency>
56 <groupId>org.apache.servicemix.bundles</groupId>
57 <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
58 <version>0.8.2.2_1</version>
59 </dependency>
60
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.scr.annotations</artifactId>
64 <scope>provided</scope>
65 </dependency>
66
67 <dependency>
68 <groupId>org.onosproject</groupId>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090069 <artifactId>onos-incubator-protobuf-models</artifactId>
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070070 <version>${project.version}</version>
71 </dependency>
72
73 <dependency>
74 <groupId>com.google.protobuf</groupId>
75 <artifactId>protobuf-java</artifactId>
Yuta HIGUCHI9efba1e2016-07-09 11:07:13 -070076 <version>3.0.0</version>
Sanjana Agarwalcb4a3db2016-07-14 11:42:48 -070077 </dependency>
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onos-app-kafka-web</artifactId>
81 <version>${project.version}</version>
82 </dependency>
83
84 <dependency>
85 <groupId>org.osgi</groupId>
86 <artifactId>org.osgi.compendium</artifactId>
87 </dependency>
88
89 </dependencies>
90
91 <build>
92 <plugins>
93 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-bundle-plugin</artifactId>
96 <extensions>true</extensions>
97 </plugin>
98
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-scr-plugin</artifactId>
102 <executions>
103 <execution>
104 <id>generate-scr-srcdescriptor</id>
105 <goals>
106 <goal>scr</goal>
107 </goals>
108 </execution>
109 </executions>
110 <configuration>
111 <supportedProjectTypes>
112 <supportedProjectType>bundle</supportedProjectType>
113 <supportedProjectType>war</supportedProjectType>
114 </supportedProjectTypes>
115 </configuration>
116 </plugin>
117 </plugins>
118 </build>
119</project>