diff --git a/.github/workflows/JavaCI.yml b/.github/workflows/JavaCI.yml new file mode 100644 index 0000000..d9a68c6 --- /dev/null +++ b/.github/workflows/JavaCI.yml @@ -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 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 6b3e9ba..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: java -jdk: - - openjdk8 - - openjdk11 -os: linux -cache: - directories: - - $HOME/.m2 diff --git a/README.md b/README.md index d73f6bd..6bf87ec 100644 --- a/README.md +++ b/README.md @@ -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. @@ -101,14 +101,14 @@ Maven com.github.saasquatch apache-client5-reactive - 0.0.4 + 0.0.5 ``` Gradle ```gradle -implementation 'com.github.saasquatch:apache-client5-reactive:0.0.4' +implementation 'com.github.saasquatch:apache-client5-reactive:0.0.5' ``` ## License diff --git a/pom.xml b/pom.xml index b66cb7f..f8dd646 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.saasquatch apache-client5-reactive - 0.0.4-SNAPSHOT + 0.0.5-SNAPSHOT jar apache-client5-reactive @@ -19,7 +19,7 @@ UTF-8 - 5.7.2 + 5.8.1 @@ -38,7 +38,7 @@ org.apache.httpcomponents.client5 httpclient5 - 5.1 + 5.1.2 org.apache.httpcomponents.core5 @@ -48,7 +48,7 @@ io.reactivex.rxjava3 rxjava - 3.0.13 + 3.1.2 com.google.code.findbugs @@ -58,7 +58,7 @@ org.slf4j slf4j-simple - 1.7.30 + 1.7.32 test