Skip to content

Commit b290ab1

Browse files
Merge pull request #6 from saasquatch/dev
Dev
2 parents b79dfc8 + 9862ef4 commit b290ab1

File tree

4 files changed

+23
-16
lines changed

4 files changed

+23
-16
lines changed

.github/workflows/JavaCI.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: JavaCI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-java@v2
9+
with:
10+
java-version: "8"
11+
distribution: adopt
12+
- name: Maven Package
13+
run: mvn -B -U clean package -DskipTests
14+
- name: Maven Verify
15+
run: mvn -B -U verify

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# apache-client5-reactive
22

33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
4-
[![Build Status](https://travis-ci.org/saasquatch/apache-client5-reactive.svg?branch=master)](https://travis-ci.org/saasquatch/apache-client5-reactive)
4+
[![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)
55
[![](https://jitpack.io/v/saasquatch/apache-client5-reactive.svg)](https://jitpack.io/#saasquatch/apache-client5-reactive)
66

77
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
101101
<dependency>
102102
<groupId>com.github.saasquatch</groupId>
103103
<artifactId>apache-client5-reactive</artifactId>
104-
<version>0.0.4</version>
104+
<version>0.0.5</version>
105105
</dependency>
106106
```
107107

108108
Gradle
109109

110110
```gradle
111-
implementation 'com.github.saasquatch:apache-client5-reactive:0.0.4'
111+
implementation 'com.github.saasquatch:apache-client5-reactive:0.0.5'
112112
```
113113

114114
## License

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.saasquatch</groupId>
55
<artifactId>apache-client5-reactive</artifactId>
6-
<version>0.0.4-SNAPSHOT</version>
6+
<version>0.0.5-SNAPSHOT</version>
77
<packaging>jar</packaging>
88

99
<name>apache-client5-reactive</name>
@@ -19,7 +19,7 @@
1919

2020
<properties>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22-
<junit.version>5.7.2</junit.version>
22+
<junit.version>5.8.1</junit.version>
2323
</properties>
2424

2525
<dependencies>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.apache.httpcomponents.client5</groupId>
4040
<artifactId>httpclient5</artifactId>
41-
<version>5.1</version>
41+
<version>5.1.2</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>org.apache.httpcomponents.core5</groupId>
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>io.reactivex.rxjava3</groupId>
5050
<artifactId>rxjava</artifactId>
51-
<version>3.0.13</version>
51+
<version>3.1.2</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>com.google.code.findbugs</groupId>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>org.slf4j</groupId>
6060
<artifactId>slf4j-simple</artifactId>
61-
<version>1.7.30</version>
61+
<version>1.7.32</version>
6262
<scope>test</scope>
6363
</dependency>
6464
</dependencies>

0 commit comments

Comments
 (0)