Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusbmx committed Sep 3, 2024
1 parent b9b0100 commit b80e2d9
Show file tree
Hide file tree
Showing 40 changed files with 14 additions and 15 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
To include Juno in your project using Gradle, add the following dependency:
```
dependencies {
implementation 'com.github.jesusbmx:juno:1.0.0'
implementation 'com.github.jesusbmx:juno-http-client:1.0.0'
implementation 'com.github.jesusbmx:juno:1.0.1'
implementation 'com.github.jesusbmx:juno-http-client:1.0.1'
}
```

Alternatively, you can download the JAR file directly from [JitPack](https://jitpack.io/#jesusbmx/juno-http-client):

Download [juno.jar](https://jitpack.io/com/github/jesusbmx/juno/1.0.0/juno-1.0.0.jar)
Download [juno.jar](https://jitpack.io/com/github/jesusbmx/juno/1.0.1/juno-1.0.1.jar)

Download [juno-http-client.jar](https://jitpack.io/com/github/jesusbmx/juno-http-client/1.0.0/juno-http-client-1.0.0.jar)
Download [juno-http-client.jar](https://jitpack.io/com/github/jesusbmx/juno-http-client/1.0.1/juno-http-client-1.0.1.jar)


## [Samples](src/test/java/Samples.java)
Expand Down
4 changes: 2 additions & 2 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.github.jesusbmx</groupId>
<artifactId>juno-http-client</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<!--
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>com.github.jesusbmx</groupId>
<artifactId>juno</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<!--
El scope está establecido en provided, lo que significa que
la dependencia solo se utilizará en tiempo de compilación y
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/juno/http/FormBody.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import java.util.List;
import java.util.Map;
import juno.io.IOUtils;
import juno.tuple.Pair;
import juno.util.Pair;

public class FormBody extends RequestBody {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/juno/http/Headers.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import juno.tuple.Pair;
import juno.util.Pair;
import juno.util.Convert;
import juno.util.Strings;

Expand Down
Binary file modified target/classes/juno/http/AsyncHttpRequest.class
Binary file not shown.
Binary file modified target/classes/juno/http/FormBody.class
Binary file not shown.
Binary file modified target/classes/juno/http/Headers.class
Binary file not shown.
Binary file modified target/classes/juno/http/HttpClient.class
Binary file not shown.
Binary file modified target/classes/juno/http/HttpRequest.class
Binary file not shown.
Binary file modified target/classes/juno/http/auth/Authorization.class
Binary file not shown.
Binary file modified target/classes/juno/http/auth/BasicAuthorization.class
Binary file not shown.
Binary file modified target/classes/juno/http/auth/OAuthAuthorization.class
Binary file not shown.
Binary file modified target/classes/juno/http/auth/TokenAuthorization.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified target/classes/juno/http/convert/gson/GsonConverterFactory.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added target/juno-http-client-1.0.1.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions target/maven-archiver/pom.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Generated by Maven
#Mon Sep 02 14:35:53 CST 2024
version=1.0.0
#Tue Sep 03 12:27:32 CST 2024
version=1.0.1
groupId=com.github.jesusbmx
artifactId=juno-http-client
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ juno\http\AsyncHttpRequest.class
juno\http\convert\json\JSONRequestBodyConverter$Obj.class
juno\http\convert\RequestBodyConverter.class
juno\http\cache\CacheModel.class
juno\http\Authorization.class
juno\http\auth\JwtTokenProvider$OnTokenRefresh.class
juno\http\cache\CacheSource.class
juno\http\convert\json\JSONRequestBodyConverter$Array.class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ C:\GitHub\juno-http-client\src\main\java\juno\http\HttpClient.java
C:\GitHub\juno-http-client\src\main\java\juno\http\cache\CacheInterceptor.java
C:\GitHub\juno-http-client\src\main\java\juno\http\convert\generic\BytesResponseBodyConverter.java
C:\GitHub\juno-http-client\src\main\java\juno\http\Debug.java
C:\GitHub\juno-http-client\src\main\java\juno\http\auth\Authorization.java
C:\GitHub\juno-http-client\src\main\java\juno\http\auth\TokenProvider.java
C:\GitHub\juno-http-client\src\main\java\juno\http\convert\gson\GsonResponseBodyConverter.java
C:\GitHub\juno-http-client\src\main\java\juno\http\convert\generic\StringResponseBodyConverter.java
C:\GitHub\juno-http-client\src\main\java\juno\http\convert\RequestBodyConverter.java
C:\GitHub\juno-http-client\src\main\java\juno\http\auth\JwtTokenProvider.java
C:\GitHub\juno-http-client\src\main\java\juno\http\OnInterceptor.java
C:\GitHub\juno-http-client\src\main\java\juno\http\Authorization.java
C:\GitHub\juno-http-client\src\main\java\juno\http\AsyncHttpRequest.java
C:\GitHub\juno-http-client\src\main\java\juno\http\convert\generic\FileResponseBodyConverter.java
C:\GitHub\juno-http-client\src\main\java\juno\http\convert\generic\GenericConverterFactory.java
Expand Down
2 changes: 1 addition & 1 deletion target/surefire-reports/AsynTest.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-------------------------------------------------------------------------------
Test set: AsynTest
-------------------------------------------------------------------------------
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
2 changes: 1 addition & 1 deletion target/surefire-reports/InterceptorTest.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-------------------------------------------------------------------------------
Test set: InterceptorTest
-------------------------------------------------------------------------------
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
2 changes: 1 addition & 1 deletion target/surefire-reports/convert.gson.GsonTest.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-------------------------------------------------------------------------------
Test set: convert.gson.GsonTest
-------------------------------------------------------------------------------
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Binary file modified target/test-classes/convert/gson/GsonTest$1.class
Binary file not shown.
Binary file modified target/test-classes/convert/gson/GsonTest$2.class
Binary file not shown.
Binary file modified target/test-classes/convert/gson/GsonTest.class
Binary file not shown.
Binary file modified target/test-classes/convert/gson/Post.class
Binary file not shown.
Binary file modified target/test-classes/convert/jackson/JacksonTest$1.class
Binary file not shown.
Binary file modified target/test-classes/convert/jackson/JacksonTest$2.class
Binary file not shown.
Binary file modified target/test-classes/convert/jackson/JacksonTest.class
Binary file not shown.
Binary file modified target/test-classes/convert/jackson/Post.class
Binary file not shown.

0 comments on commit b80e2d9

Please sign in to comment.