Skip to content

Commit 7ab5f86

Browse files
Jose Agustin PuenteJose Agustin Puente
authored andcommitted
Merge remote-tracking branch 'origin/main' into develop
2 parents a277ec9 + 899c600 commit 7ab5f86

112 files changed

Lines changed: 212 additions & 189 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Publish to Maven Central
2+
3+
on:
4+
push:
5+
tags: ['v*']
6+
workflow_dispatch:
7+
inputs:
8+
wait-max-time:
9+
description: 'Sonatype Central polling wait time in seconds (default 3600)'
10+
required: false
11+
default: '3600'
12+
13+
jobs:
14+
maven-central:
15+
uses: fireflyframework/.github/.github/workflows/java-publish-maven-central.yml@main
16+
with:
17+
java-version: '25'
18+
wait-max-time: ${{ inputs.wait-max-time || '3600' }}
19+
permissions:
20+
contents: read
21+
packages: read
22+
secrets: inherit
23+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,6 @@ Contributions are welcome. Please read the [CONTRIBUTING.md](CONTRIBUTING.md) gu
139139
140140
## License
141141
142-
Copyright 2024-2026 Firefly Software Solutions Inc.
142+
Copyright 2024-2026 Firefly Software Foundation.
143143
144144
Licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details.

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,5 +298,5 @@ class UserServiceTest {
298298

299299
---
300300

301-
**Built with ❤️ by Firefly Software Solutions Inc**
301+
**Built with ❤️ by Firefly Software Foundation**
302302

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>org.fireflyframework</groupId>
99
<artifactId>fireflyframework-parent</artifactId>
10-
<version>26.05.05</version>
10+
<version>26.05.07</version>
1111
</parent>
1212

1313
<artifactId>fireflyframework-client</artifactId>
14-
<version>26.05.05</version>
14+
<version>26.05.07</version>
1515
<packaging>jar</packaging>
1616

1717
<name>Firefly Framework - Common Client Library</name>

src/main/java/org/fireflyframework/client/ClientType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024-2026 Firefly Software Solutions Inc
2+
* Copyright 2024-2026 Firefly Software Foundation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@
2222
* <p>This enum identifies the underlying communication protocol and implementation
2323
* used by a ServiceClient instance, allowing for type-specific behavior and optimizations.
2424
*
25-
* @author Firefly Software Solutions Inc
25+
* @author Firefly Software Foundation
2626
* @since 2.0.0
2727
*/
2828
public enum ClientType {

src/main/java/org/fireflyframework/client/GrpcClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024-2026 Firefly Software Solutions Inc
2+
* Copyright 2024-2026 Firefly Software Foundation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
5757
* }</pre>
5858
*
5959
* @param <T> the gRPC stub type
60-
* @author Firefly Software Solutions Inc
60+
* @author Firefly Software Foundation
6161
* @since 2.0.0
6262
*/
6363
public interface GrpcClient<T> extends ServiceClient {

src/main/java/org/fireflyframework/client/RequestBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024-2026 Firefly Software Solutions Inc
2+
* Copyright 2024-2026 Firefly Software Foundation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -50,7 +50,7 @@
5050
* }</pre>
5151
*
5252
* @param <R> the response type
53-
* @author Firefly Software Solutions Inc
53+
* @author Firefly Software Foundation
5454
* @since 2.0.0
5555
*/
5656
public interface RequestBuilder<R> {

src/main/java/org/fireflyframework/client/RestClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024-2026 Firefly Software Solutions Inc
2+
* Copyright 2024-2026 Firefly Software Foundation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@
5151
* Flux<Event> events = client.stream("/events", Event.class);
5252
* }</pre>
5353
*
54-
* @author Firefly Software Solutions Inc
54+
* @author Firefly Software Foundation
5555
* @since 2.0.0
5656
*/
5757
public interface RestClient extends ServiceClient {

src/main/java/org/fireflyframework/client/ServiceClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024-2026 Firefly Software Solutions Inc
2+
* Copyright 2024-2026 Firefly Software Foundation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
6464
* .build();
6565
* }</pre>
6666
*
67-
* @author Firefly Software Solutions Inc
67+
* @author Firefly Software Foundation
6868
* @since 2.0.0
6969
*/
7070
public interface ServiceClient {

src/main/java/org/fireflyframework/client/SoapClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024-2026 Firefly Software Solutions Inc
2+
* Copyright 2024-2026 Firefly Software Foundation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
5555
* List<String> operations = client.getOperations();
5656
* }</pre>
5757
*
58-
* @author Firefly Software Solutions Inc
58+
* @author Firefly Software Foundation
5959
* @since 2.0.0
6060
*/
6161
public interface SoapClient extends ServiceClient {

0 commit comments

Comments
 (0)