Jonathan Hart | 1d34c8b | 2018-05-05 15:37:28 -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/xsd/maven-4.0.0.xsd"> |
| 20 | <parent> |
| 21 | <groupId>org.opencord</groupId> |
| 22 | <artifactId>olt</artifactId> |
Jenkins | 878a702 | 2018-06-07 17:57:34 +0000 | [diff] [blame] | 23 | <version>1.5.0-SNAPSHOT</version> |
Jonathan Hart | 1d34c8b | 2018-05-05 15:37:28 -0700 | [diff] [blame] | 24 | <relativePath>../pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
| 28 | <artifactId>olt-kafka</artifactId> |
| 29 | |
| 30 | <packaging>bundle</packaging> |
| 31 | <description>Kafka event module for OLT application</description> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.opencord</groupId> |
| 36 | <artifactId>olt-api</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.apache.servicemix.bundles</groupId> |
| 41 | <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId> |
| 42 | <version>1.1.0_1</version> |
| 43 | </dependency> |
| 44 | </dependencies> |
| 45 | |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-maven-plugin</artifactId> |
| 51 | <version>1.11</version> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>maven-bundle-plugin</artifactId> |
| 56 | <extensions>true</extensions> |
| 57 | </plugin> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>maven-scr-plugin</artifactId> |
| 61 | <version>1.21.0</version> |
| 62 | <executions> |
| 63 | <execution> |
| 64 | <id>generate-scr-srcdescriptor</id> |
| 65 | <goals> |
| 66 | <goal>scr</goal> |
| 67 | </goals> |
| 68 | </execution> |
| 69 | </executions> |
| 70 | <configuration> |
| 71 | <supportedProjectTypes> |
| 72 | <supportedProjectType>bundle</supportedProjectType> |
| 73 | </supportedProjectTypes> |
| 74 | </configuration> |
| 75 | </plugin> |
| 76 | </plugins> |
| 77 | </build> |
| 78 | </project> |