Sanjana Agarwal | cb4a3db | 2016-07-14 11:42:48 -0700 | [diff] [blame] | 1 | <?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. |
| 33 | This module is exclusive of REST calls and is only for the implementation of Apache Kafka. |
| 34 | </description> |
| 35 | |
| 36 | <dependencies> |
| 37 | |
| 38 | <dependency> |
| 39 | <groupId>org.onosproject</groupId> |
| 40 | <artifactId>onos-api</artifactId> |
| 41 | </dependency> |
| 42 | |
| 43 | <dependency> |
| 44 | <groupId>org.onosproject</groupId> |
| 45 | <artifactId>onos-app-kafka-api</artifactId> |
| 46 | <version>${project.version}</version> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.osgi</groupId> |
| 51 | <artifactId>org.osgi.core</artifactId> |
| 52 | <version>4.3.1</version> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.apache.servicemix.bundles</groupId> |
| 57 | <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId> |
| 58 | <version>0.8.2.2_1</version> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>org.apache.felix</groupId> |
| 63 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 64 | <scope>provided</scope> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.onosproject</groupId> |
| 69 | <artifactId>onos-incubator-protobuf</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>com.google.protobuf</groupId> |
| 75 | <artifactId>protobuf-java</artifactId> |
| 76 | <version>3.0.0-beta-2</version> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
| 80 | <artifactId>onos-app-kafka-web</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.osgi</groupId> |
| 86 | <artifactId>org.osgi.compendium</artifactId> |
| 87 | </dependency> |
| 88 | |
| 89 | </dependencies> |
| 90 | |
| 91 | <build> |
| 92 | <plugins> |
| 93 | <plugin> |
| 94 | <groupId>org.apache.felix</groupId> |
| 95 | <artifactId>maven-bundle-plugin</artifactId> |
| 96 | <extensions>true</extensions> |
| 97 | </plugin> |
| 98 | |
| 99 | <plugin> |
| 100 | <groupId>org.apache.felix</groupId> |
| 101 | <artifactId>maven-scr-plugin</artifactId> |
| 102 | <executions> |
| 103 | <execution> |
| 104 | <id>generate-scr-srcdescriptor</id> |
| 105 | <goals> |
| 106 | <goal>scr</goal> |
| 107 | </goals> |
| 108 | </execution> |
| 109 | </executions> |
| 110 | <configuration> |
| 111 | <supportedProjectTypes> |
| 112 | <supportedProjectType>bundle</supportedProjectType> |
| 113 | <supportedProjectType>war</supportedProjectType> |
| 114 | </supportedProjectTypes> |
| 115 | </configuration> |
| 116 | </plugin> |
| 117 | </plugins> |
| 118 | </build> |
| 119 | </project> |