Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hakky54 committed Sep 22, 2024
1 parent 3767ee6 commit 1494ad1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
This list is not intended to be all-encompassing - it will document major and breaking API
changes with their rationale when appropriate:

### v8.3.7
- Added Apache5SslUtils toTlsSocketStrategy method
- Marked Apache5SslUtils toSocketFactory method as deprecated
- Bumped dependencies
### v8.3.6
- Bumped dependencies
- Enhanced logging within LoggingX509ExtendedTrustManager
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@ Hey, hello there 👋 Welcome, I hope you will like this library ❤️ Feel fre
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart</artifactId>
<version>8.3.6</version>
<version>8.3.7</version>
</dependency>
```
### Install with Gradle
```groovy
implementation 'io.github.hakky54:sslcontext-kickstart:8.3.6'
implementation 'io.github.hakky54:sslcontext-kickstart:8.3.7'
```
### Install with Gradle Kotlin DSL
```kotlin
implementation("io.github.hakky54:sslcontext-kickstart:8.3.6")
implementation("io.github.hakky54:sslcontext-kickstart:8.3.7")
```
### Install with Scala SBT
```
libraryDependencies += "io.github.hakky54" % "sslcontext-kickstart" % "8.3.6"
libraryDependencies += "io.github.hakky54" % "sslcontext-kickstart" % "8.3.7"
```
### Install with Apache Ivy
```xml

<dependency org="io.github.hakky54" name="sslcontext-kickstart" rev="8.3.6"/>
<dependency org="io.github.hakky54" name="sslcontext-kickstart" rev="8.3.7"/>
```

## Table of contents
Expand Down Expand Up @@ -780,7 +780,7 @@ Add the dependency below to use this feature, it also includes the core features
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-pem</artifactId>
<version>8.3.6</version>
<version>8.3.7</version>
</dependency>
```
##### Loading pem files from the classpath
Expand Down Expand Up @@ -1151,7 +1151,7 @@ Some know http clients which relay on netty libraries are: [Spring WebFlux WebCl
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-netty</artifactId>
<version>8.3.6</version>
<version>8.3.7</version>
</dependency>
```
Example setup for Spring WebClient with Netty:
Expand Down Expand Up @@ -1189,7 +1189,7 @@ public class App {
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-jetty</artifactId>
<version>8.3.6</version>
<version>8.3.7</version>
</dependency>
```
Example setup for [Spring WebFlux WebClient Jetty](https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html):
Expand Down Expand Up @@ -1227,7 +1227,7 @@ However it is still possible to configure the http client with their custom conf
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-apache4</artifactId>
<version>8.3.6</version>
<version>8.3.7</version>
</dependency>
```
```java
Expand Down Expand Up @@ -1258,7 +1258,7 @@ public class App {
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-apache5</artifactId>
<version>8.3.6</version>
<version>8.3.7</version>
</dependency>
```
```java
Expand Down

0 comments on commit 1494ad1

Please sign in to comment.