blob: d29662daad1c628b6219b02017cbce68dcf2ea2a [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>
24 <version>1.7.0-SNAPSHOT</version>
25 </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>
53 <version>4.3.1</version>
54 </dependency>
55
56 <dependency>
57 <groupId>org.apache.servicemix.bundles</groupId>
58 <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
59 <version>0.8.2.2_1</version>
60 </dependency>
61
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.scr.annotations</artifactId>
65 <scope>provided</scope>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-incubator-protobuf</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73
74 <dependency>
75 <groupId>com.google.protobuf</groupId>
76 <artifactId>protobuf-java</artifactId>
77 <version>3.0.0-beta-2</version>
78 </dependency>
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onos-app-kafka-web</artifactId>
82 <version>${project.version}</version>
83 </dependency>
84
85 <dependency>
86 <groupId>org.osgi</groupId>
87 <artifactId>org.osgi.compendium</artifactId>
88 </dependency>
89
90 </dependencies>
91
92 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-bundle-plugin</artifactId>
97 <extensions>true</extensions>
98 </plugin>
99
100 <plugin>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-scr-plugin</artifactId>
103 <executions>
104 <execution>
105 <id>generate-scr-srcdescriptor</id>
106 <goals>
107 <goal>scr</goal>
108 </goals>
109 </execution>
110 </executions>
111 <configuration>
112 <supportedProjectTypes>
113 <supportedProjectType>bundle</supportedProjectType>
114 <supportedProjectType>war</supportedProjectType>
115 </supportedProjectTypes>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
120</project>