From b98e50ae188890af97491b5ea32318fbb25eaf32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Ulman?= Date: Tue, 23 Apr 2024 14:52:35 +0200 Subject: [PATCH 1/4] POM: updated to use pom-scijava v37.0.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ff68b94..14d7ccd 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.scijava pom-scijava - 29.0.0-beta-3 + 37.0.0 sc.fiji From 9b6cf2ae1858039219b967f07b9deb547099ac37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Ulman?= Date: Tue, 23 Apr 2024 14:53:54 +0200 Subject: [PATCH 2/4] POM: use HTTPS for schema location URL Maven no longer supports plain HTTP for the schema location. And using HTTP now generates errors in Eclipse (and probably other IDEs). --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 14d7ccd..4a09107 100644 --- a/pom.xml +++ b/pom.xml @@ -1,6 +1,6 @@ - + 4.0.0 From 6f1fb247062441166bd921c60df681f6e55d18b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Ulman?= Date: Tue, 23 Apr 2024 14:53:54 +0200 Subject: [PATCH 3/4] POM: fix forum.image.sc tag link The Discourse software updated the tags path from /tags/ to /tag/. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4a09107..a79330b 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ Image.sc Forum - https://forum.image.sc/tags/fiji + https://forum.image.sc/tag/fiji From 6ce116529c18ad91e94bf24a5780784cb3e09926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Ulman?= Date: Tue, 23 Apr 2024 14:57:40 +0200 Subject: [PATCH 4/4] Updated copyright blurbs --- LICENSE.txt | 8 ++++---- src/main/java/sc/fiji/simplifiedio/SimplifiedIO.java | 2 +- .../java/sc/fiji/simplifiedio/SimplifiedIOException.java | 2 +- .../java/sc/fiji/simplifiedio/ImageOpenExceptionTest.java | 2 +- src/test/java/sc/fiji/simplifiedio/SimplifiedIOTest.java | 2 +- .../java/sc/fiji/simplifiedio/SimplifiedIOTestBase.java | 2 +- src/test/java/sc/fiji/simplifiedio/ThreadSafetyTest.java | 2 +- .../java/sc/fiji/simplifiedio/util/SortAxesUtils.java | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 94a9ed0..f288702 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,7 +1,7 @@ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -645,7 +645,7 @@ the "copyright" line and a pointer to where the full notice is found. GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see . + along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. @@ -664,11 +664,11 @@ might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see -. +. The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. diff --git a/src/main/java/sc/fiji/simplifiedio/SimplifiedIO.java b/src/main/java/sc/fiji/simplifiedio/SimplifiedIO.java index adcd458..50d6d58 100644 --- a/src/main/java/sc/fiji/simplifiedio/SimplifiedIO.java +++ b/src/main/java/sc/fiji/simplifiedio/SimplifiedIO.java @@ -2,7 +2,7 @@ * #%L * Fiji distribution of ImageJ for the life sciences. * %% - * Copyright (C) 2019 - 2020 Fiji developers. + * Copyright (C) 2019 - 2024 Fiji developers. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/sc/fiji/simplifiedio/SimplifiedIOException.java b/src/main/java/sc/fiji/simplifiedio/SimplifiedIOException.java index 14583dd..4be5ecd 100644 --- a/src/main/java/sc/fiji/simplifiedio/SimplifiedIOException.java +++ b/src/main/java/sc/fiji/simplifiedio/SimplifiedIOException.java @@ -2,7 +2,7 @@ * #%L * Fiji distribution of ImageJ for the life sciences. * %% - * Copyright (C) 2019 - 2020 Fiji developers. + * Copyright (C) 2019 - 2024 Fiji developers. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/sc/fiji/simplifiedio/ImageOpenExceptionTest.java b/src/test/java/sc/fiji/simplifiedio/ImageOpenExceptionTest.java index ff5d298..bfdbd43 100644 --- a/src/test/java/sc/fiji/simplifiedio/ImageOpenExceptionTest.java +++ b/src/test/java/sc/fiji/simplifiedio/ImageOpenExceptionTest.java @@ -2,7 +2,7 @@ * #%L * Fiji distribution of ImageJ for the life sciences. * %% - * Copyright (C) 2019 - 2020 Fiji developers. + * Copyright (C) 2019 - 2024 Fiji developers. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/sc/fiji/simplifiedio/SimplifiedIOTest.java b/src/test/java/sc/fiji/simplifiedio/SimplifiedIOTest.java index 3f644f4..200b205 100644 --- a/src/test/java/sc/fiji/simplifiedio/SimplifiedIOTest.java +++ b/src/test/java/sc/fiji/simplifiedio/SimplifiedIOTest.java @@ -2,7 +2,7 @@ * #%L * Fiji distribution of ImageJ for the life sciences. * %% - * Copyright (C) 2019 - 2020 Fiji developers. + * Copyright (C) 2019 - 2024 Fiji developers. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/sc/fiji/simplifiedio/SimplifiedIOTestBase.java b/src/test/java/sc/fiji/simplifiedio/SimplifiedIOTestBase.java index 492c3d0..4bab0ab 100644 --- a/src/test/java/sc/fiji/simplifiedio/SimplifiedIOTestBase.java +++ b/src/test/java/sc/fiji/simplifiedio/SimplifiedIOTestBase.java @@ -2,7 +2,7 @@ * #%L * Fiji distribution of ImageJ for the life sciences. * %% - * Copyright (C) 2019 - 2020 Fiji developers. + * Copyright (C) 2019 - 2024 Fiji developers. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/sc/fiji/simplifiedio/ThreadSafetyTest.java b/src/test/java/sc/fiji/simplifiedio/ThreadSafetyTest.java index 7f1d9f4..441ca73 100644 --- a/src/test/java/sc/fiji/simplifiedio/ThreadSafetyTest.java +++ b/src/test/java/sc/fiji/simplifiedio/ThreadSafetyTest.java @@ -2,7 +2,7 @@ * #%L * Fiji distribution of ImageJ for the life sciences. * %% - * Copyright (C) 2019 - 2020 Fiji developers. + * Copyright (C) 2019 - 2024 Fiji developers. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/sc/fiji/simplifiedio/util/SortAxesUtils.java b/src/test/java/sc/fiji/simplifiedio/util/SortAxesUtils.java index 7082d43..217344e 100644 --- a/src/test/java/sc/fiji/simplifiedio/util/SortAxesUtils.java +++ b/src/test/java/sc/fiji/simplifiedio/util/SortAxesUtils.java @@ -2,7 +2,7 @@ * #%L * Fiji distribution of ImageJ for the life sciences. * %% - * Copyright (C) 2019 - 2020 Fiji developers. + * Copyright (C) 2019 - 2024 Fiji developers. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as