Skip to content

Commit

Permalink
Merge pull request #6 from saasquatch/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
slisaasquatch authored Nov 22, 2021
2 parents b79dfc8 + 9862ef4 commit b290ab1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 16 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/JavaCI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: JavaCI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: "8"
distribution: adopt
- name: Maven Package
run: mvn -B -U clean package -DskipTests
- name: Maven Verify
run: mvn -B -U verify
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# apache-client5-reactive

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Build Status](https://travis-ci.org/saasquatch/apache-client5-reactive.svg?branch=master)](https://travis-ci.org/saasquatch/apache-client5-reactive)
[![JavaCI](https://github.com/saasquatch/apache-client5-reactive/actions/workflows/JavaCI.yml/badge.svg?branch=master)](https://github.com/saasquatch/saasquatch-java-sdk/actions/workflows/JavaCI.yml)
[![](https://jitpack.io/v/saasquatch/apache-client5-reactive.svg)](https://jitpack.io/#saasquatch/apache-client5-reactive)

Thin wrapper around [Apache HttpComponents](https://hc.apache.org/) HttpAsyncClient 5.x to expose [Reactive Streams](https://www.reactive-streams.org) interfaces.
Expand Down Expand Up @@ -101,14 +101,14 @@ Maven
<dependency>
<groupId>com.github.saasquatch</groupId>
<artifactId>apache-client5-reactive</artifactId>
<version>0.0.4</version>
<version>0.0.5</version>
</dependency>
```

Gradle

```gradle
implementation 'com.github.saasquatch:apache-client5-reactive:0.0.4'
implementation 'com.github.saasquatch:apache-client5-reactive:0.0.5'
```

## License
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.saasquatch</groupId>
<artifactId>apache-client5-reactive</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.5-SNAPSHOT</version>
<packaging>jar</packaging>

<name>apache-client5-reactive</name>
Expand All @@ -19,7 +19,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.7.2</junit.version>
<junit.version>5.8.1</junit.version>
</properties>

<dependencies>
Expand All @@ -38,7 +38,7 @@
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.1</version>
<version>5.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
Expand All @@ -48,7 +48,7 @@
<dependency>
<groupId>io.reactivex.rxjava3</groupId>
<artifactId>rxjava</artifactId>
<version>3.0.13</version>
<version>3.1.2</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
Expand All @@ -58,7 +58,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.30</version>
<version>1.7.32</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit b290ab1

Please sign in to comment.