Skip to content

Commit 9882c65

Browse files
Jose Agustin PuenteJose Agustin Puente
authored andcommitted
Merge remote-tracking branch 'origin/main' into develop
2 parents 4ab5a2a + afa22ac commit 9882c65

111 files changed

Lines changed: 134 additions & 111 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

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
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
<relativePath/>
1212
</parent>
1313

1414
<artifactId>fireflyframework-web</artifactId>
15-
<version>26.05.05</version>
15+
<version>26.05.07</version>
1616
<packaging>jar</packaging>
1717

1818
<name>Firefly Framework - Web</name>

src/main/java/org/fireflyframework/web/conditions/config/ConditionsReportAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
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.

src/main/java/org/fireflyframework/web/conditions/config/ConditionsReportProperties.java

Lines changed: 1 addition & 1 deletion
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.

src/main/java/org/fireflyframework/web/conditions/config/ConditionsReportPropertiesAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
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.

src/main/java/org/fireflyframework/web/conditions/config/ConditionsReportPropertiesConfiguration.java

Lines changed: 1 addition & 1 deletion
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.

src/main/java/org/fireflyframework/web/conditions/listener/ConditionsReportListener.java

Lines changed: 1 addition & 1 deletion
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.

src/main/java/org/fireflyframework/web/conditions/service/ConditionsReportService.java

Lines changed: 1 addition & 1 deletion
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.

src/main/java/org/fireflyframework/web/configuration/ExceptionHandlerAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
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.

0 commit comments

Comments
 (0)