blob: c3af919b5bbf350e663cfdb83a25d1463669ed43 [file] [log] [blame]
Jonathan Hart501f7882018-07-24 14:39:57 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2018-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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
25 <version>1.13.1</version>
26 <relativePath></relativePath>
27 </parent>
28
29 <groupId>org.opencord</groupId>
30 <artifactId>kafka</artifactId>
31 <version>1.0.0-SNAPSHOT</version>
32 <packaging>bundle</packaging>
33
34 <description>Kafka integration</description>
35
36 <properties>
37 <onos.app.name>org.opencord.kafka</onos.app.name>
38 <onos.version>1.13.1</onos.version>
39 <onos.app.title>Kafka integration</onos.app.title>
40 <onos.app.url>http://opencord.org</onos.app.url>
41 <onos.app.readme>Integration with Kafka event bus</onos.app.readme>
42 <aaa.api.version>1.8.0-SNAPSHOT</aaa.api.version>
43 <olt.api.version>2.0.0-SNAPSHOT</olt.api.version>
44 </properties>
45
46 <dependencies>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
50 <version>${onos.version}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-api</artifactId>
56 <version>${onos.version}</version>
57 <classifier>tests</classifier>
58 <scope>test</scope>
59 </dependency>
60
61
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onlab-junit</artifactId>
65 <version>${onos.version}</version>
66 </dependency>
67
68 <dependency>
69 <groupId>org.apache.servicemix.bundles</groupId>
70 <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
Jonathan Harta11792a2018-08-19 13:48:17 -070071 <version>1.1.1_1</version>
Jonathan Hart501f7882018-07-24 14:39:57 -070072 </dependency>
73
74 <dependency>
75 <groupId>org.opencord</groupId>
76 <artifactId>aaa</artifactId>
77 <version>${aaa.api.version}</version>
78 </dependency>
79
80 <dependency>
81 <groupId>org.opencord</groupId>
82 <artifactId>olt-api</artifactId>
83 <version>${olt.api.version}</version>
84 </dependency>
85
86 </dependencies>
87
88 <build>
89 <plugins>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-bundle-plugin</artifactId>
93 </plugin>
94
95 <plugin>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>maven-scr-plugin</artifactId>
98 </plugin>
99
100 <plugin>
101 <groupId>org.onosproject</groupId>
102 <artifactId>onos-maven-plugin</artifactId>
103 <version>1.11</version>
104 </plugin>
105 </plugins>
106 </build>
107
108 <repositories>
109 <repository>
110 <id>central</id>
111 <name>Central Repository</name>
112 <url>http://repo.maven.apache.org/maven2</url>
113 <layout>default</layout>
114 <snapshots>
115 <enabled>false</enabled>
116 </snapshots>
117 <releases>
118 <enabled>true</enabled>
119 <updatePolicy>always</updatePolicy>
120 <checksumPolicy>fail</checksumPolicy>
121 </releases>
122 </repository>
123
124 <repository>
125 <id>snapshots</id>
126 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
127 <snapshots>
128 <enabled>true</enabled>
129 <updatePolicy>always</updatePolicy>
130 <checksumPolicy>fail</checksumPolicy>
131 </snapshots>
132 </repository>
133 </repositories>
134</project>