Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 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"> |
Thomas Vachuska | 0e11dcb | 2017-12-13 16:57:14 -0800 | [diff] [blame] | 20 | |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 7847227 | 2018-05-03 17:08:16 -0700 | [diff] [blame] | 23 | <artifactId>onos-apps-kafka-integration</artifactId> |
Ray Milkey | bca9049 | 2018-04-13 12:47:31 -0700 | [diff] [blame] | 24 | <version>1.14.0-SNAPSHOT</version> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
Yuta HIGUCHI | 7847227 | 2018-05-03 17:08:16 -0700 | [diff] [blame] | 28 | <artifactId>onos-apps-kafka-integration-app</artifactId> |
Thomas Vachuska | 0e11dcb | 2017-12-13 16:57:14 -0800 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <url>http://onosproject.org</url> |
| 32 | |
| 33 | <description>Kafka Integration Application</description> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 34 | |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 35 | <properties> |
| 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | <onos.version>${project.version}</onos.version> |
| 38 | <onos.app.name>org.onosproject.kafkaintegration</onos.app.name> |
| 39 | <onos.app.title>Kafka Integration Application</onos.app.title> |
| 40 | <onos.app.origin>Calix, Inc.</onos.app.origin> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 41 | <onos.app.category>Utility</onos.app.category> |
| 42 | <onos.app.url>https://wiki.onosproject.org/display/ONOS/Kafka+Integration</onos.app.url> |
Thomas Vachuska | 0e11dcb | 2017-12-13 16:57:14 -0800 | [diff] [blame] | 43 | <onos.app.requires>org.onosproject.grpc.nb.service</onos.app.requires> |
| 44 | <web.context>/onos/kafka</web.context> |
| 45 | <api.version>1.0.0</api.version> |
| 46 | <api.title>Kafka Integration Application REST API</api.title> |
| 47 | <api.package>org.onosproject.kafkaintegration.rest</api.package> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 48 | </properties> |
| 49 | |
Sanjana Agarwal | cb4a3db | 2016-07-14 11:42:48 -0700 | [diff] [blame] | 50 | <dependencies> |
Thomas Vachuska | 0e11dcb | 2017-12-13 16:57:14 -0800 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-api</artifactId> |
| 54 | </dependency> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 7847227 | 2018-05-03 17:08:16 -0700 | [diff] [blame] | 58 | <artifactId>onos-apps-kafka-integration-api</artifactId> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 59 | <version>${project.version}</version> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
Thomas Vachuska | 0e11dcb | 2017-12-13 16:57:14 -0800 | [diff] [blame] | 63 | <groupId>org.osgi</groupId> |
| 64 | <artifactId>org.osgi.core</artifactId> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
Sanjana Agarwal | cb4a3db | 2016-07-14 11:42:48 -0700 | [diff] [blame] | 68 | <groupId>org.apache.servicemix.bundles</groupId> |
| 69 | <artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId> |
| 70 | <version>0.8.2.2_1</version> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 71 | </dependency> |
| 72 | |
Thomas Vachuska | 0e11dcb | 2017-12-13 16:57:14 -0800 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>org.apache.felix</groupId> |
| 75 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 76 | <scope>provided</scope> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onos-incubator-protobuf-models</artifactId> |
| 82 | <version>${project.version}</version> |
| 83 | </dependency> |
| 84 | |
| 85 | <dependency> |
| 86 | <groupId>org.onosproject</groupId> |
| 87 | <artifactId>onos-core-serializers</artifactId> |
| 88 | <version>${project.version}</version> |
| 89 | </dependency> |
| 90 | |
| 91 | <dependency> |
| 92 | <groupId>com.google.protobuf</groupId> |
| 93 | <artifactId>protobuf-java</artifactId> |
| 94 | <version>3.0.0</version> |
| 95 | </dependency> |
| 96 | |
| 97 | <dependency> |
| 98 | <groupId>org.osgi</groupId> |
| 99 | <artifactId>org.osgi.compendium</artifactId> |
| 100 | </dependency> |
| 101 | |
| 102 | <dependency> |
| 103 | <groupId>org.onosproject</groupId> |
| 104 | <artifactId>onos-rest</artifactId> |
| 105 | <version>${project.version}</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.onosproject</groupId> |
| 109 | <artifactId>onlab-rest</artifactId> |
| 110 | <version>${project.version}</version> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>javax.ws.rs</groupId> |
| 114 | <artifactId>javax.ws.rs-api</artifactId> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.glassfish.jersey.containers</groupId> |
| 118 | <artifactId>jersey-container-servlet</artifactId> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>com.fasterxml.jackson.core</groupId> |
| 122 | <artifactId>jackson-databind</artifactId> |
| 123 | </dependency> |
| 124 | |
| 125 | <dependency> |
| 126 | <groupId>com.fasterxml.jackson.core</groupId> |
| 127 | <artifactId>jackson-annotations</artifactId> |
| 128 | </dependency> |
Shravan Ambati | bb6b445 | 2016-05-04 13:25:28 -0700 | [diff] [blame] | 129 | </dependencies> |
Thomas Vachuska | 0e11dcb | 2017-12-13 16:57:14 -0800 | [diff] [blame] | 130 | |
| 131 | <build> |
| 132 | <plugins> |
| 133 | <plugin> |
| 134 | <groupId>org.apache.felix</groupId> |
| 135 | <artifactId>maven-bundle-plugin</artifactId> |
| 136 | <extensions>true</extensions> |
| 137 | <configuration> |
| 138 | <instructions> |
| 139 | <_wab>src/main/webapp/</_wab> |
| 140 | <Include-Resource> |
| 141 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 142 | {maven-resources} |
| 143 | </Include-Resource> |
| 144 | <Bundle-SymbolicName> |
| 145 | ${project.groupId}.${project.artifactId} |
| 146 | </Bundle-SymbolicName> |
| 147 | <Import-Package> |
| 148 | *,org.glassfish.jersey.servlet |
| 149 | </Import-Package> |
| 150 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 151 | </instructions> |
| 152 | </configuration> |
| 153 | </plugin> |
| 154 | </plugins> |
| 155 | </build> |
Sanjana Agarwal | cb4a3db | 2016-07-14 11:42:48 -0700 | [diff] [blame] | 156 | </project> |