From 2bfb181c4d6ce93fa8b47b61e9313c72c597cac4 Mon Sep 17 00:00:00 2001 From: Guus der Kinderen Date: Wed, 2 Apr 2025 12:56:29 +0200 Subject: [PATCH 1/3] Bump Java source/target from 1.7 to 1.8 Although the code of this project likely is compatible with Java 1.4, modern JVMs refuse to compile, with errors like these: ``` Compilation failure: Compilation failure: Error: Source option 7 is no longer supported. Use 8 or later. Error: Target option 7 is no longer supported. Use 8 or later. ``` To circument that, the source and darget definitions are set to 8 in this commit. --- pom.xml | 4 ++-- readme.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 022a621..cc384fe 100644 --- a/pom.xml +++ b/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT - 7 - 7 + 8 + 8 UTF-8 diff --git a/readme.md b/readme.md index ec0f3fe..ba313a0 100644 --- a/readme.md +++ b/readme.md @@ -65,7 +65,7 @@ Fragment starting at index 125, ending at index 162 (exclusive) is not a link: ## Build / Compilation This project should be compatible with any version of Java that is not _ancient_. It _should_ be compatible with -Java 1.4, but to circumvent some issues with modern build tooling, its project descriptor defines 1.7. +Java 1.4, but to circumvent some issues with modern build tooling, its project descriptor defines 1.8. The project can be built using standard [Maven](https://maven.apache.org/) invocations, like this: From b0bcd1af0c162f2de36eddb486344fd7b9838b10 Mon Sep 17 00:00:00 2001 From: Guus der Kinderen Date: Wed, 2 Apr 2025 12:54:20 +0200 Subject: [PATCH 2/3] Denote v1.0.0 release --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cc384fe..cc13622 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ nl.goodbytes.util linkdetector - 1.0.0-SNAPSHOT + 1.0.0 8 From 39e194999b35ae3107ce4ec829588434609210d3 Mon Sep 17 00:00:00 2001 From: Guus der Kinderen Date: Wed, 2 Apr 2025 12:54:40 +0200 Subject: [PATCH 3/3] March forward version number to reflect future development. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cc13622..79c1dff 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ nl.goodbytes.util linkdetector - 1.0.0 + 1.0.1-SNAPSHOT 8