File tree Expand file tree Collapse file tree 4 files changed +23
-16
lines changed
Expand file tree Collapse file tree 4 files changed +23
-16
lines changed Original file line number Diff line number Diff line change 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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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
77Thin 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
108108Gradle
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
Original file line number Diff line number Diff line change 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 >
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 >
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 >
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 >
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 >
You can’t perform that action at this time.
0 commit comments