Skip to content

Commit f32fc11

Browse files
committed
Renamed sslcontext-kickstart to ayza
1 parent 4b58370 commit f32fc11

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ After some time I discovered that there are a lot more Java clients and there al
5959
Configuring ssl/tls can be hard and every client requires a different setup. I want to share the knowledge with other developers as every developer will probably work with a different http client.
6060
I also want to provide a **cheatsheet** for all the developers and the community, see [here](#tested-clients) for a list of [40+ http client](#tested-clients)) with example client configuration and example http request.
6161
The client module has grown over time and contains a-lot dependencies to test all these http clients for java, scala and kotlin. Therefore client module might look complicated. Beware that for this specific reason it will download a-lot dependencies during the initial build.
62-
Also [GitHub - SSLContext Kickstart](https://github.com/Hakky54/sslcontext-kickstart) came into life during the lifecycle of this project to easily configure all those clients. Every http client can require a different ssl object to enable ssl and this library ensures it can deliver all the types to configure these clients while having a basic ssl configuration.
62+
Also [GitHub - Ayza](https://github.com/Hakky54/ayza) came into life during the lifecycle of this project to easily configure all those clients. Every http client can require a different ssl object to enable ssl and this library ensures it can deliver all the types to configure these clients while having a basic ssl configuration.
6363

6464
# Tutorial
6565
## Starting the server

client/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -330,23 +330,23 @@
330330

331331
<dependency>
332332
<groupId>io.github.hakky54</groupId>
333-
<artifactId>sslcontext-kickstart</artifactId>
333+
<artifactId>ayza</artifactId>
334334
</dependency>
335335
<dependency>
336336
<groupId>io.github.hakky54</groupId>
337-
<artifactId>sslcontext-kickstart-for-apache4</artifactId>
337+
<artifactId>ayza-for-apache4</artifactId>
338338
</dependency>
339339
<dependency>
340340
<groupId>io.github.hakky54</groupId>
341-
<artifactId>sslcontext-kickstart-for-apache5</artifactId>
341+
<artifactId>ayza-for-apache5</artifactId>
342342
</dependency>
343343
<dependency>
344344
<groupId>io.github.hakky54</groupId>
345-
<artifactId>sslcontext-kickstart-for-netty</artifactId>
345+
<artifactId>ayza-for-netty</artifactId>
346346
</dependency>
347347
<dependency>
348348
<groupId>io.github.hakky54</groupId>
349-
<artifactId>sslcontext-kickstart-for-jetty</artifactId>
349+
<artifactId>ayza-for-jetty</artifactId>
350350
</dependency>
351351
</dependencies>
352352

client/src/main/java/nl/altindag/client/SSLConfig.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
* convenient methods to easily construct the ssl material with
2828
* different kinds of input to configure over 40+ http clients.
2929
*
30-
* @see <a href="https://github.com/Hakky54/sslcontext-kickstart">
31-
* https://github.com/Hakky54/sslcontext-kickstart
30+
* @see <a href="https://github.com/Hakky54/ayza">
31+
* https://github.com/Hakky54/ayza
3232
* </a>
33-
* @see <a href="https://github.com/Hakky54/sslcontext-kickstart#tested-http-clients">
34-
* https://github.com/Hakky54/sslcontext-kickstart#tested-http-clients
33+
* @see <a href="https://github.com/Hakky54/ayza#tested-http-clients">
34+
* https://github.com/Hakky54/ayza#tested-http-clients
3535
* </a>
3636
*/
3737
@Component

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<version.kotlin>2.2.0</version.kotlin>
2222
<version.kotlinx-coroutines-core>1.10.2</version.kotlinx-coroutines-core>
2323
<version.groovy>4.0.27</version.groovy>
24-
<version.sslcontext-kickstart>9.1.0</version.sslcontext-kickstart>
24+
<version.ayza>10.0.0</version.ayza>
2525
<version.spring>3.5.3</version.spring>
2626
<version.slf4j>2.0.17</version.slf4j>
2727
<version.logback>1.5.18</version.logback>
@@ -100,8 +100,8 @@
100100
<dependencies>
101101
<dependency>
102102
<groupId>io.github.hakky54</groupId>
103-
<artifactId>sslcontext-kickstart-bom</artifactId>
104-
<version>${version.sslcontext-kickstart}</version>
103+
<artifactId>ayza-bom</artifactId>
104+
<version>${version.ayza}</version>
105105
<type>pom</type>
106106
<scope>import</scope>
107107
</dependency>

0 commit comments

Comments
 (0)