From df45170d2a2db7d96da9a4f98a73799e2224b457 Mon Sep 17 00:00:00 2001 From: Ben Ballard Date: Thu, 3 Apr 2025 14:18:06 -0400 Subject: [PATCH 1/2] copyright 2025 --- docker/meshmonitor.dockerfile | 2 +- src/main/java/org/voltdb/meshmonitor/ConsoleLogger.java | 2 +- .../voltdb/meshmonitor/GitPropertiesVersionProvider.java | 2 +- src/main/java/org/voltdb/meshmonitor/ServerManager.java | 2 +- .../voltdb/meshmonitor/metrics/MonitorStatsPrinter.java | 2 +- .../meshmonitor/GitPropertiesVersionProviderTest.java | 2 +- .../java/org/voltdb/meshmonitor/HistogramLoggerTest.java | 2 +- .../org/voltdb/meshmonitor/MeshMonitorTimingsTest.java | 2 +- .../voltdb/meshmonitor/metrics/HistogramPrinterTest.java | 2 +- .../meshmonitor/metrics/MonitorStatsPrinterTest.java | 2 +- .../metrics/SimplePrometheusMetricsServerTest.java | 2 +- .../testutils/ByteBufferReadableByteChannel.java | 2 +- .../meshmonitor/testutils/FakeWritableByteChannel.java | 2 +- .../org/voltdb/meshmonitor/testutils/FileChannelUtils.java | 2 +- .../voltdb/meshmonitor/testutils/FileChannelUtilsTest.java | 7 +++++++ 15 files changed, 21 insertions(+), 14 deletions(-) diff --git a/docker/meshmonitor.dockerfile b/docker/meshmonitor.dockerfile index c1b64e5..b0bc821 100644 --- a/docker/meshmonitor.dockerfile +++ b/docker/meshmonitor.dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2024 Volt Active Data Inc. +# Copyright (C) 2024-2025 Volt Active Data Inc. # # Use of this source code is governed by an MIT # license that can be found in the LICENSE file or at diff --git a/src/main/java/org/voltdb/meshmonitor/ConsoleLogger.java b/src/main/java/org/voltdb/meshmonitor/ConsoleLogger.java index 563a1f6..f9179a2 100644 --- a/src/main/java/org/voltdb/meshmonitor/ConsoleLogger.java +++ b/src/main/java/org/voltdb/meshmonitor/ConsoleLogger.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/main/java/org/voltdb/meshmonitor/GitPropertiesVersionProvider.java b/src/main/java/org/voltdb/meshmonitor/GitPropertiesVersionProvider.java index 9ee8f52..ece04cd 100644 --- a/src/main/java/org/voltdb/meshmonitor/GitPropertiesVersionProvider.java +++ b/src/main/java/org/voltdb/meshmonitor/GitPropertiesVersionProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/main/java/org/voltdb/meshmonitor/ServerManager.java b/src/main/java/org/voltdb/meshmonitor/ServerManager.java index 6ccc4b2..688f9fe 100644 --- a/src/main/java/org/voltdb/meshmonitor/ServerManager.java +++ b/src/main/java/org/voltdb/meshmonitor/ServerManager.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/main/java/org/voltdb/meshmonitor/metrics/MonitorStatsPrinter.java b/src/main/java/org/voltdb/meshmonitor/metrics/MonitorStatsPrinter.java index 801aa14..97e430e 100644 --- a/src/main/java/org/voltdb/meshmonitor/metrics/MonitorStatsPrinter.java +++ b/src/main/java/org/voltdb/meshmonitor/metrics/MonitorStatsPrinter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/GitPropertiesVersionProviderTest.java b/src/test/java/org/voltdb/meshmonitor/GitPropertiesVersionProviderTest.java index 265b226..233a452 100644 --- a/src/test/java/org/voltdb/meshmonitor/GitPropertiesVersionProviderTest.java +++ b/src/test/java/org/voltdb/meshmonitor/GitPropertiesVersionProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/HistogramLoggerTest.java b/src/test/java/org/voltdb/meshmonitor/HistogramLoggerTest.java index 9731645..fd0bb6b 100644 --- a/src/test/java/org/voltdb/meshmonitor/HistogramLoggerTest.java +++ b/src/test/java/org/voltdb/meshmonitor/HistogramLoggerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/MeshMonitorTimingsTest.java b/src/test/java/org/voltdb/meshmonitor/MeshMonitorTimingsTest.java index b010cf4..406586b 100644 --- a/src/test/java/org/voltdb/meshmonitor/MeshMonitorTimingsTest.java +++ b/src/test/java/org/voltdb/meshmonitor/MeshMonitorTimingsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/metrics/HistogramPrinterTest.java b/src/test/java/org/voltdb/meshmonitor/metrics/HistogramPrinterTest.java index 063ecb1..00276c1 100644 --- a/src/test/java/org/voltdb/meshmonitor/metrics/HistogramPrinterTest.java +++ b/src/test/java/org/voltdb/meshmonitor/metrics/HistogramPrinterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/metrics/MonitorStatsPrinterTest.java b/src/test/java/org/voltdb/meshmonitor/metrics/MonitorStatsPrinterTest.java index 5efc99b..c810ba1 100644 --- a/src/test/java/org/voltdb/meshmonitor/metrics/MonitorStatsPrinterTest.java +++ b/src/test/java/org/voltdb/meshmonitor/metrics/MonitorStatsPrinterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/metrics/SimplePrometheusMetricsServerTest.java b/src/test/java/org/voltdb/meshmonitor/metrics/SimplePrometheusMetricsServerTest.java index 13c976b..600b493 100644 --- a/src/test/java/org/voltdb/meshmonitor/metrics/SimplePrometheusMetricsServerTest.java +++ b/src/test/java/org/voltdb/meshmonitor/metrics/SimplePrometheusMetricsServerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/testutils/ByteBufferReadableByteChannel.java b/src/test/java/org/voltdb/meshmonitor/testutils/ByteBufferReadableByteChannel.java index 5b9c856..6e053aa 100644 --- a/src/test/java/org/voltdb/meshmonitor/testutils/ByteBufferReadableByteChannel.java +++ b/src/test/java/org/voltdb/meshmonitor/testutils/ByteBufferReadableByteChannel.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/testutils/FakeWritableByteChannel.java b/src/test/java/org/voltdb/meshmonitor/testutils/FakeWritableByteChannel.java index b8f657d..c5d93ef 100644 --- a/src/test/java/org/voltdb/meshmonitor/testutils/FakeWritableByteChannel.java +++ b/src/test/java/org/voltdb/meshmonitor/testutils/FakeWritableByteChannel.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/testutils/FileChannelUtils.java b/src/test/java/org/voltdb/meshmonitor/testutils/FileChannelUtils.java index 7faef37..423ce59 100644 --- a/src/test/java/org/voltdb/meshmonitor/testutils/FileChannelUtils.java +++ b/src/test/java/org/voltdb/meshmonitor/testutils/FileChannelUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2024 Volt Active Data Inc. + * Copyright (C) 2024-2025 Volt Active Data Inc. * * Use of this source code is governed by an MIT * license that can be found in the LICENSE file or at diff --git a/src/test/java/org/voltdb/meshmonitor/testutils/FileChannelUtilsTest.java b/src/test/java/org/voltdb/meshmonitor/testutils/FileChannelUtilsTest.java index e6aa781..83d3b77 100644 --- a/src/test/java/org/voltdb/meshmonitor/testutils/FileChannelUtilsTest.java +++ b/src/test/java/org/voltdb/meshmonitor/testutils/FileChannelUtilsTest.java @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2024-2025 Volt Active Data Inc. + * + * Use of this source code is governed by an MIT + * license that can be found in the LICENSE file or at + * https://opensource.org/licenses/MIT. + */ package org.voltdb.meshmonitor.testutils; import org.junit.Test; From ed85e73790b4da34cb63244c319e82d5793c83d7 Mon Sep 17 00:00:00 2001 From: Ben Ballard Date: Thu, 3 Apr 2025 15:20:04 -0400 Subject: [PATCH 2/2] run license:check with validate (pre-compile) --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index f1ecfd3..44e42c4 100644 --- a/pom.xml +++ b/pom.xml @@ -281,6 +281,8 @@ + check-license + validate check