blob: 6704176a1729fb1fbefab88a96ac929c2ae76669 [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>
Jenkins92445252018-12-14 17:12:47 +000031 <version>1.1.0-SNAPSHOT</version>
Jonathan Hart501f7882018-07-24 14:39:57 -070032 <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>
Matteo Scandoloc78df8f2019-03-18 13:45:50 -070042 <aaa.api.version>1.9.0-SNAPSHOT</aaa.api.version>
43 <olt.api.version>3.0.1-SNAPSHOT</olt.api.version>
44 <dhcpl2relay.api.version>1.6.0-SNAPSHOT</dhcpl2relay.api.version>
Jonathan Hart501f7882018-07-24 14:39:57 -070045 </properties>
46
47 <dependencies>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-api</artifactId>
51 <version>${onos.version}</version>
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
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-junit</artifactId>
66 <version>${onos.version}</version>
67 </dependency>
68
69 <dependency>
70 <groupId>org.apache.servicemix.bundles</groupId>
71 <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
Jonathan Harta11792a2018-08-19 13:48:17 -070072 <version>1.1.1_1</version>
Jonathan Hart501f7882018-07-24 14:39:57 -070073 </dependency>
74
75 <dependency>
76 <groupId>org.opencord</groupId>
77 <artifactId>aaa</artifactId>
78 <version>${aaa.api.version}</version>
Matteo Scandolo03f13c12019-03-20 14:38:12 -070079 <optional>true</optional>
Jonathan Hart501f7882018-07-24 14:39:57 -070080 </dependency>
81
82 <dependency>
83 <groupId>org.opencord</groupId>
84 <artifactId>olt-api</artifactId>
85 <version>${olt.api.version}</version>
Matteo Scandolo03f13c12019-03-20 14:38:12 -070086 <optional>true</optional>
Jonathan Hart501f7882018-07-24 14:39:57 -070087 </dependency>
88
Jonathan Hart2aad7792018-07-31 15:09:17 -040089 <dependency>
90 <groupId>org.opencord</groupId>
91 <artifactId>dhcpl2relay</artifactId>
92 <version>${dhcpl2relay.api.version}</version>
Matteo Scandolo03f13c12019-03-20 14:38:12 -070093 <optional>true</optional>
Jonathan Hart2aad7792018-07-31 15:09:17 -040094 </dependency>
95
96
Jonathan Hart501f7882018-07-24 14:39:57 -070097 </dependencies>
98
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>maven-bundle-plugin</artifactId>
104 </plugin>
105
106 <plugin>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>maven-scr-plugin</artifactId>
109 </plugin>
110
111 <plugin>
112 <groupId>org.onosproject</groupId>
113 <artifactId>onos-maven-plugin</artifactId>
114 <version>1.11</version>
115 </plugin>
116 </plugins>
117 </build>
118
119 <repositories>
120 <repository>
121 <id>central</id>
122 <name>Central Repository</name>
123 <url>http://repo.maven.apache.org/maven2</url>
124 <layout>default</layout>
125 <snapshots>
126 <enabled>false</enabled>
127 </snapshots>
128 <releases>
129 <enabled>true</enabled>
130 <updatePolicy>always</updatePolicy>
131 <checksumPolicy>fail</checksumPolicy>
132 </releases>
133 </repository>
134
135 <repository>
136 <id>snapshots</id>
137 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
138 <snapshots>
139 <enabled>true</enabled>
140 <updatePolicy>always</updatePolicy>
141 <checksumPolicy>fail</checksumPolicy>
142 </snapshots>
143 </repository>
144 </repositories>
145</project>