Jonathan Hart | 501f788 | 2018-07-24 14:39:57 -0700 | [diff] [blame] | 1 | <?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> |
Jenkins | 9244525 | 2018-12-14 17:12:47 +0000 | [diff] [blame] | 31 | <version>1.1.0-SNAPSHOT</version> |
Jonathan Hart | 501f788 | 2018-07-24 14:39:57 -0700 | [diff] [blame] | 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> |
Matteo Scandolo | c78df8f | 2019-03-18 13:45:50 -0700 | [diff] [blame] | 42 | <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> |
Matteo Scandolo | d50a4d3 | 2019-04-24 12:10:21 -0700 | [diff] [blame] | 45 | <sadis.api.version>3.1.0-SNAPSHOT</sadis.api.version> |
Jonathan Hart | 501f788 | 2018-07-24 14:39:57 -0700 | [diff] [blame] | 46 | </properties> |
| 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
| 51 | <artifactId>onos-api</artifactId> |
| 52 | <version>${onos.version}</version> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
| 57 | <artifactId>onos-api</artifactId> |
| 58 | <version>${onos.version}</version> |
| 59 | <classifier>tests</classifier> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | |
| 63 | |
| 64 | <dependency> |
| 65 | <groupId>org.onosproject</groupId> |
| 66 | <artifactId>onlab-junit</artifactId> |
| 67 | <version>${onos.version}</version> |
| 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>org.apache.servicemix.bundles</groupId> |
| 72 | <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId> |
Jonathan Hart | a11792a | 2018-08-19 13:48:17 -0700 | [diff] [blame] | 73 | <version>1.1.1_1</version> |
Jonathan Hart | 501f788 | 2018-07-24 14:39:57 -0700 | [diff] [blame] | 74 | </dependency> |
| 75 | |
| 76 | <dependency> |
| 77 | <groupId>org.opencord</groupId> |
Matteo Scandolo | d50a4d3 | 2019-04-24 12:10:21 -0700 | [diff] [blame] | 78 | <artifactId>aaa-api</artifactId> |
Jonathan Hart | 501f788 | 2018-07-24 14:39:57 -0700 | [diff] [blame] | 79 | <version>${aaa.api.version}</version> |
| 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>org.opencord</groupId> |
| 84 | <artifactId>olt-api</artifactId> |
| 85 | <version>${olt.api.version}</version> |
| 86 | </dependency> |
| 87 | |
Jonathan Hart | 2aad779 | 2018-07-31 15:09:17 -0400 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>org.opencord</groupId> |
Matteo Scandolo | d50a4d3 | 2019-04-24 12:10:21 -0700 | [diff] [blame] | 90 | <artifactId>dhcpl2relay-api</artifactId> |
Jonathan Hart | 2aad779 | 2018-07-31 15:09:17 -0400 | [diff] [blame] | 91 | <version>${dhcpl2relay.api.version}</version> |
| 92 | </dependency> |
| 93 | |
Jonathan Hart | 501f788 | 2018-07-24 14:39:57 -0700 | [diff] [blame] | 94 | </dependencies> |
| 95 | |
| 96 | <build> |
| 97 | <plugins> |
| 98 | <plugin> |
| 99 | <groupId>org.apache.felix</groupId> |
| 100 | <artifactId>maven-bundle-plugin</artifactId> |
| 101 | </plugin> |
| 102 | |
| 103 | <plugin> |
| 104 | <groupId>org.apache.felix</groupId> |
| 105 | <artifactId>maven-scr-plugin</artifactId> |
| 106 | </plugin> |
| 107 | |
| 108 | <plugin> |
| 109 | <groupId>org.onosproject</groupId> |
| 110 | <artifactId>onos-maven-plugin</artifactId> |
| 111 | <version>1.11</version> |
| 112 | </plugin> |
| 113 | </plugins> |
| 114 | </build> |
| 115 | |
| 116 | <repositories> |
| 117 | <repository> |
| 118 | <id>central</id> |
| 119 | <name>Central Repository</name> |
| 120 | <url>http://repo.maven.apache.org/maven2</url> |
| 121 | <layout>default</layout> |
| 122 | <snapshots> |
| 123 | <enabled>false</enabled> |
| 124 | </snapshots> |
| 125 | <releases> |
| 126 | <enabled>true</enabled> |
| 127 | <updatePolicy>always</updatePolicy> |
| 128 | <checksumPolicy>fail</checksumPolicy> |
| 129 | </releases> |
| 130 | </repository> |
| 131 | |
| 132 | <repository> |
| 133 | <id>snapshots</id> |
| 134 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 135 | <snapshots> |
| 136 | <enabled>true</enabled> |
| 137 | <updatePolicy>always</updatePolicy> |
| 138 | <checksumPolicy>fail</checksumPolicy> |
| 139 | </snapshots> |
| 140 | </repository> |
| 141 | </repositories> |
| 142 | </project> |