| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| |
| --> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <packaging>pom</packaging> |
| <parent> |
| <groupId>org.apache.pulsar</groupId> |
| <artifactId>pulsar</artifactId> |
| <version>2.7.0-SNAPSHOT</version> |
| </parent> |
| |
| <groupId>org.apache.pulsar</groupId> |
| <artifactId>pulsar-connectors</artifactId> |
| |
| <version>2.7.0-SNAPSHOT</version> |
| |
| <name>Pulsar Adapters</name> |
| <description>A collections of Pulsar IO connectors.</description> |
| <url>https://github.com/apache/pulsar-connectors</url> |
| |
| <organization> |
| <name>Apache Software Foundation</name> |
| <url>http://www.apache.org/</url> |
| </organization> |
| <inceptionYear>2017</inceptionYear> |
| |
| <developers> |
| <developer> |
| <organization>Apache Pulsar developers</organization> |
| <organizationUrl>http://pulsar.apache.org/</organizationUrl> |
| </developer> |
| </developers> |
| |
| <licenses> |
| <license> |
| <name>Apache License, Version 2.0</name> |
| <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| |
| <scm> |
| <url>https://github.com/apache/pulsar-connectors</url> |
| <connection>scm:git:https://github.com/apache/pulsar-connectors.git</connection> |
| <developerConnection>scm:git:ssh://git@github.com:apache/pulsar-connectors.git</developerConnection> |
| </scm> |
| |
| <ciManagement> |
| <system>Travis</system> |
| <url>https://travis-ci.org/apache/pulsar</url> |
| </ciManagement> |
| |
| <issueManagement> |
| <system>Github</system> |
| <url>https://github.com/apache/pulsar-connectors/issues</url> |
| </issueManagement> |
| |
| <properties> |
| <flink.version>1.6.0</flink.version> |
| <storm.version>2.0.0</storm.version> |
| </properties> |
| |
| <modules> |
| <module>pulsar-io</module> |
| </modules> |
| |
| <dependencyManagement> |
| </dependencyManagement> |
| |
| <dependencies> |
| </dependencies> |
| |
| <build> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>windows</id> |
| <activation> |
| <os> |
| <family>Windows</family> |
| </os> |
| </activation> |
| <properties> |
| <rename.netty.native.libs>rename-netty-native-libs.cmd</rename.netty.native.libs> |
| </properties> |
| </profile> |
| </profiles> |
| |
| <repositories> |
| <repository> |
| <id>central</id> |
| <layout>default</layout> |
| <url>https://repo1.maven.org/maven2</url> |
| </repository> |
| </repositories> |
| |
| </project> |
| |