Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
git checkout -b release
./mvnw -B -Prelease release:clean release:prepare -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}}
./mvnw -B -Prelease javadoc:aggregate site:site site:stage
./mvnw -B -Prelease,javadoc site:site site:stage
git checkout ${{vars.GITHUB_BASE_REF}}
git rebase release
./mvnw -B -Prelease release:perform -DskipTests
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ jobs:
- name: Deploy Snapshot with Maven, version ${{ steps.project.outputs.version }}
if: ${{endsWith(steps.project.outputs.version, '-SNAPSHOT')}}
run: |
./mvnw -B -Prelease-snapshot javadoc:aggregate
./mvnw -B -Prelease-snapshot deploy -Dmaven.test.skip=true
./mvnw -B -Prelease-snapshot,javadoc deploy -Dmaven.test.skip=true
env:
MAVEN_USERNAME: ${{ secrets.OSS_SONATYPE_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSS_SONATYPE_PASSWORD }}
Expand Down
29 changes: 29 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -698,3 +698,32 @@ assertEquals("null [5, 6]", MoreStrings.lenientFormat(null, 5, 6));
assertEquals("null", MoreStrings.lenientFormat("%s", (Object) null));
assertEquals("(Object[])null", MoreStrings.lenientFormat("%s", (Object[]) null));
----

[[iocuiutilnet]]
=== de.cuioss.tools.net

Provides utilities for network operations, including URL handling, internet address support, SSL, and HTTP helpers.

==== de.cuioss.tools.net.http

HTTP-related utilities, such as:

* HttpHandler – HTTP request/response handling
* HttpStatusFamily – HTTP status family detection
* SecureSSLContextProvider – Secure SSL context for HTTP

==== de.cuioss.tools.net.ssl

SSL-related helpers, including:

* KeyStoreProvider – KeyStore management
* KeyMaterialHolder – Key material handling
* KeyAlgorithm – Supported algorithms
* KeyStoreType – KeyStore types

==== de.cuioss.tools.net (core)

* UrlHelper – URL manipulation utilities
* UrlParameter – URL parameter handling
* ParameterFilter – Parameter filtering
* IDNInternetAddress – IDN support and internationalized domain handling
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.cuioss</groupId>
<artifactId>cui-java-parent</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -85,7 +85,7 @@
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<scope>test</scope>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
Loading
Loading