Github user rschmitt commented on a diff in the pull request:

    https://github.com/apache/httpcomponents-core/pull/74#discussion_r212413900
  
    --- Diff: httpcore5-reactive/pom.xml ---
    @@ -0,0 +1,87 @@
    +<?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.
    +  ====================================================================
    +
    +  This software consists of voluntary contributions made by many
    +  individuals on behalf of the Apache Software Foundation.  For more
    +  information on the Apache Software Foundation, please see
    +  <http://www.apache.org />.
    +-->
    +<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";>
    +  <parent>
    +    <artifactId>httpcore5-parent</artifactId>
    +    <groupId>org.apache.httpcomponents.core5</groupId>
    +    <version>5.0-beta3-SNAPSHOT</version>
    +  </parent>
    +  <modelVersion>4.0.0</modelVersion>
    +
    +  <artifactId>httpcore5-reactive</artifactId>
    +  <name>Apache HttpComponents Core Reactive Extensions</name>
    +  <description>Apache HttpComponents Reactive Streams 
Bindings</description>
    +  <url>http://hc.apache.org/httpcomponents-core-ga</url>
    +  <packaging>jar</packaging>
    +
    +  <dependencies>
    +    <dependency>
    +      <groupId>org.apache.httpcomponents.core5</groupId>
    +      <artifactId>httpcore5</artifactId>
    +      <version>${project.version}</version>
    +      <scope>compile</scope>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.reactivestreams</groupId>
    +      <artifactId>reactive-streams</artifactId>
    +      <version>1.0.2</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>junit</groupId>
    +      <artifactId>junit</artifactId>
    +      <scope>test</scope>
    +    </dependency>
    +    <dependency>
    +      <groupId>io.reactivex.rxjava2</groupId>
    --- End diff --
    
    This was absolutely supposed to be test-only. I'll fix it.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to