Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
abe80e5
migrated pem.xml configs to workflow plugins
VenaNocta Feb 10, 2026
d822031
updated date
VenaNocta Feb 10, 2026
240e77d
replaced maven profiles in Jenkinsfile with new versions
VenaNocta Feb 10, 2026
77bcdcc
updated Jenkinsfile
VenaNocta Feb 11, 2026
8ffd0f7
added plugin repos to maven repo-profiles
VenaNocta Feb 11, 2026
c7efcd7
changed maven pre-caching in Jenkinsfile
VenaNocta Feb 11, 2026
3236bd0
changed maven pre-caching in Jenkinsfile (2)
VenaNocta Feb 11, 2026
f66a17a
fixed unit test execution in Jenkins
VenaNocta Feb 13, 2026
585f977
updated Jenkinsfile
VenaNocta Feb 13, 2026
22a6f9a
[java-utils-common] fixed bugs in CollectionUtils & added unit tests …
VenaNocta Feb 15, 2026
1fa04d5
updated ci pipeline
VenaNocta Feb 15, 2026
48f8303
Merge branch 'task-17-build-process-rework' into bug-18-java-utils-co…
VenaNocta Feb 15, 2026
ec03c55
[java-utils-bom] updated bom version
VenaNocta Feb 15, 2026
2e324af
added build helper file .build/update-pom-property
VenaNocta Feb 15, 2026
9e24ed9
added maven-dependency-plugin to workflow
VenaNocta Feb 15, 2026
3d01436
added forced BOM update for testing to Jenkinsfile
VenaNocta Feb 15, 2026
fff670a
Merge branch 'task-17-build-process-rework' into bug-18-java-utils-co…
VenaNocta Feb 15, 2026
c980fa8
changed bom force update for tests to user defined override
VenaNocta Feb 15, 2026
a42b0a2
Merge branch 'task-17-build-process-rework' into bug-18-java-utils-co…
VenaNocta Feb 15, 2026
fc38388
[java-utils-common] updated bom version
VenaNocta Feb 16, 2026
990be94
[java-utils-common] Unit Tests & Bugfixes, move to RC v2.0.1 (#19)
VenaNocta Feb 20, 2026
288c883
[java-utils-maven3-ext] incremented patch version
VenaNocta Feb 20, 2026
540b557
[java-utils-maven3-ext-api] incremented patch version
VenaNocta Feb 20, 2026
f666254
[java-utils-maven3-ext(-api)] added ExtensionType & added eclipse Cla…
VenaNocta Feb 21, 2026
49e7a7a
[java-utils-maven3-ext] improved m2e compatibility (fixes #20)
VenaNocta Feb 21, 2026
5448524
updated Jenkinsfile & pom.xml
VenaNocta Apr 12, 2026
2887219
removed rogue junit artifacts from bom-artifact
VenaNocta Apr 12, 2026
130fdf0
Revert "removed rogue junit artifacts from bom-artifact"
VenaNocta Apr 12, 2026
668314f
removed rogue junit artifacts from bom-artifact (2)
VenaNocta Apr 12, 2026
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
25 changes: 25 additions & 0 deletions .build/update-pom-property
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/sh

set -e

if [ $# -lt 2 ] || [ $# -gt 3 ]; then
printf "Usage: %s <property> <new-value> [path]\n" "$0"
printf " path defaults to current directory\n"
exit 1
fi

PROP_NAME="$1"
NEW_VALUE="$2"
SEARCH_PATH="${3:-.}"

find "$SEARCH_PATH" \
\( -type d -name src -o -type d -name target \) -prune -o \
-type f -name pom.xml -print |
while read -r pom; do
sed -i \
"s|\(<[[:space:]]*${PROP_NAME}[[:space:]]*>[[:space:]]*\)[^<]*\([[:space:]]*</[[:space:]]*${PROP_NAME}[[:space:]]*>\)|\1${NEW_VALUE}\2|g" \
"$pom"
done

printf "Updated %s to %s under %s\n" "${PROP_NAME}" "${NEW_VALUE}" "${SEARCH_PATH}"

2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
<extension>
<groupId>net.runeduniverse.tools.maven.r4m</groupId>
<artifactId>r4m-maven-extension</artifactId>
<version>1.0.1</version>
<version>1.1.1</version>
</extension>
</extensions>
186 changes: 124 additions & 62 deletions Jenkinsfile

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion java-utils-async-api/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--

Copyright © 2025 VenaNocta (venanocta@gmail.com)
Copyright © 2026 VenaNocta (venanocta@gmail.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion java-utils-async/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--

Copyright © 2025 VenaNocta (venanocta@gmail.com)
Copyright © 2026 VenaNocta (venanocta@gmail.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
26 changes: 21 additions & 5 deletions java-utils-bom/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--

Copyright © 2025 VenaNocta (venanocta@gmail.com)
Copyright © 2026 VenaNocta (venanocta@gmail.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -27,7 +27,7 @@
</parent>

<artifactId>utils-bom</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<packaging>pom</packaging>

<name>UTILS - Bill of Materials</name>
Expand Down Expand Up @@ -80,7 +80,7 @@
<utils-chain-api-version>2.0.0</utils-chain-api-version>
<utils-chain-version>2.0.0</utils-chain-version>
<utils-common-api-version>2.0.0</utils-common-api-version>
<utils-common-version>2.0.0</utils-common-version>
<utils-common-version>2.0.1</utils-common-version>
<utils-conditional-api-version>2.0.0</utils-conditional-api-version>
<utils-conditional-version>2.0.0</utils-conditional-version>
<utils-config-api-version>2.0.0</utils-config-api-version>
Expand All @@ -90,8 +90,8 @@
<utils-logging-version>2.0.0</utils-logging-version>
<utils-maven3-api-version>2.0.0</utils-maven3-api-version>
<utils-maven3-version>2.0.0</utils-maven3-version>
<utils-maven3-ext-api-version>2.0.0</utils-maven3-ext-api-version>
<utils-maven3-ext-version>2.0.0</utils-maven3-ext-version>
<utils-maven3-ext-api-version>2.0.1</utils-maven3-ext-api-version>
<utils-maven3-ext-version>2.0.1</utils-maven3-ext-version>
<utils-plexus-version>2.0.0</utils-plexus-version>
<utils-scanner-api-version>2.0.0</utils-scanner-api-version>
<utils-scanner-version>2.0.0</utils-scanner-version>
Expand Down Expand Up @@ -201,4 +201,20 @@
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<configuration>
<flattenMode>bom</flattenMode>
<pomElements>
<properties>remove</properties>
<dependencyManagement>interpolate</dependencyManagement>
</pomElements>
</configuration>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion java-utils-chain-api/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--

Copyright © 2025 VenaNocta (venanocta@gmail.com)
Copyright © 2026 VenaNocta (venanocta@gmail.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion java-utils-chain/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--

Copyright © 2025 VenaNocta (venanocta@gmail.com)
Copyright © 2026 VenaNocta (venanocta@gmail.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion java-utils-common-api/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--

Copyright © 2025 VenaNocta (venanocta@gmail.com)
Copyright © 2026 VenaNocta (venanocta@gmail.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2025 VenaNocta (venanocta@gmail.com)
* Copyright © 2026 VenaNocta (venanocta@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Loading