diff --git a/benchmark/commons/src/main/java/org/springframework/data/microbenchmark/commons/convert/DefaultTypeMapperBenchmark.java b/benchmark/commons/src/main/java/org/springframework/data/microbenchmark/commons/convert/DefaultTypeMapperBenchmark.java
index 345ad51..6855f1f 100644
--- a/benchmark/commons/src/main/java/org/springframework/data/microbenchmark/commons/convert/DefaultTypeMapperBenchmark.java
+++ b/benchmark/commons/src/main/java/org/springframework/data/microbenchmark/commons/convert/DefaultTypeMapperBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/commons/src/main/java/org/springframework/data/microbenchmark/commons/convert/TypicalEntityReaderBenchmark.java b/benchmark/commons/src/main/java/org/springframework/data/microbenchmark/commons/convert/TypicalEntityReaderBenchmark.java
index 036f8f0..f604dc8 100644
--- a/benchmark/commons/src/main/java/org/springframework/data/microbenchmark/commons/convert/TypicalEntityReaderBenchmark.java
+++ b/benchmark/commons/src/main/java/org/springframework/data/microbenchmark/commons/convert/TypicalEntityReaderBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/commons/src/main/kotlin/org/springframework/data/microbenchmark/commons/convert/MyDataClass.kt b/benchmark/commons/src/main/kotlin/org/springframework/data/microbenchmark/commons/convert/MyDataClass.kt
index 9cc7b1d..976872d 100644
--- a/benchmark/commons/src/main/kotlin/org/springframework/data/microbenchmark/commons/convert/MyDataClass.kt
+++ b/benchmark/commons/src/main/kotlin/org/springframework/data/microbenchmark/commons/convert/MyDataClass.kt
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/AfterConvertCallbacksBenchmark.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/AfterConvertCallbacksBenchmark.java
index 4285dd1..ee18edc 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/AfterConvertCallbacksBenchmark.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/AfterConvertCallbacksBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/Book.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/Book.java
index 62d3cb2..a420cb5 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/Book.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/Book.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,14 +15,15 @@
*/
package org.springframework.data.microbenchmark.mongodb;
+import lombok.AllArgsConstructor;
+import lombok.Value;
+
import org.bson.types.ObjectId;
+
import org.springframework.data.annotation.Id;
import org.springframework.data.annotation.PersistenceConstructor;
import org.springframework.data.mongodb.core.mapping.Document;
-import lombok.AllArgsConstructor;
-import lombok.Value;
-
/**
* @author Oliver Drotbohm
*/
@@ -34,9 +35,9 @@ public class Book {
@Id ObjectId id;
String title;
int pages;
-
+
public Book(String title, int pages) {
-
+
this.id = ObjectId.get();
this.title = title;
this.pages = pages;
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/CallbacksBenchmark.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/CallbacksBenchmark.java
index 5f408be..2c5cdfa 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/CallbacksBenchmark.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/CallbacksBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/Constants.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/Constants.java
index f1bab73..8329c23 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/Constants.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/Constants.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbBenchmark.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbBenchmark.java
index ef2db16..664999f 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbBenchmark.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbBookRepository.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbBookRepository.java
index 3202ce1..f6a5e31 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbBookRepository.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbBookRepository.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbFixture.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbFixture.java
index 241e375..6fce5e7 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbFixture.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/MongoDbFixture.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,6 +15,8 @@
*/
package org.springframework.data.microbenchmark.mongodb;
+import lombok.Getter;
+
import java.util.Collections;
import java.util.stream.IntStream;
@@ -23,8 +25,6 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.data.mongodb.core.MongoOperations;
-import lombok.Getter;
-
/**
* @author Oliver Drotbohm
*/
@@ -40,11 +40,11 @@ class MongoDbFixture {
application.setLazyInitialization(true);
this.context = application.run();
-
+
MongoOperations operations = context.getBean(MongoOperations.class);
-
+
operations.dropCollection(Book.class);
-
+
IntStream.range(0, Constants.NUMBER_OF_BOOKS) //
.mapToObj(it -> new Book("title" + it, it)) //
.forEach(operations::save);
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/ProjectionsBenchmark.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/ProjectionsBenchmark.java
index cf7d17a..28e4fcf 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/ProjectionsBenchmark.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/ProjectionsBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/convert/DbRefMappingBenchmark.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/convert/DbRefMappingBenchmark.java
index d675e77..325c7f9 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/convert/DbRefMappingBenchmark.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/convert/DbRefMappingBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,8 +15,8 @@
*/
package org.springframework.data.microbenchmark.mongodb.convert;
-import static org.springframework.data.mongodb.core.query.Criteria.where;
-import static org.springframework.data.mongodb.core.query.Query.query;
+import static org.springframework.data.mongodb.core.query.Criteria.*;
+import static org.springframework.data.mongodb.core.query.Query.*;
import lombok.Data;
@@ -24,7 +24,12 @@ import java.util.ArrayList;
import java.util.List;
import org.bson.types.ObjectId;
-import org.openjdk.jmh.annotations.*;
+import org.openjdk.jmh.annotations.Benchmark;
+import org.openjdk.jmh.annotations.Scope;
+import org.openjdk.jmh.annotations.Setup;
+import org.openjdk.jmh.annotations.State;
+import org.openjdk.jmh.annotations.TearDown;
+
import org.springframework.data.annotation.Id;
import org.springframework.data.microbenchmark.common.AbstractMicrobenchmark;
import org.springframework.data.mongodb.core.MongoTemplate;
diff --git a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/convert/MappingMongoConverterBenchmark.java b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/convert/MappingMongoConverterBenchmark.java
index a8a4a69..c42742b 100644
--- a/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/convert/MappingMongoConverterBenchmark.java
+++ b/benchmark/mongodb/src/main/java/org/springframework/data/microbenchmark/mongodb/convert/MappingMongoConverterBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -20,11 +20,21 @@ import lombok.Data;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
-import java.util.*;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.LinkedHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.UUID;
import org.bson.Document;
import org.bson.types.ObjectId;
-import org.openjdk.jmh.annotations.*;
+import org.openjdk.jmh.annotations.Benchmark;
+import org.openjdk.jmh.annotations.Scope;
+import org.openjdk.jmh.annotations.Setup;
+import org.openjdk.jmh.annotations.State;
+import org.openjdk.jmh.annotations.TearDown;
+
import org.springframework.data.annotation.Id;
import org.springframework.data.geo.Point;
import org.springframework.data.microbenchmark.common.AbstractMicrobenchmark;
diff --git a/benchmark/redis/src/main/java/org/springframework/data/microbenchmark/redis/ReactiveRedisTemplateBenchmark.java b/benchmark/redis/src/main/java/org/springframework/data/microbenchmark/redis/ReactiveRedisTemplateBenchmark.java
index cbf0eae..3abf4c6 100644
--- a/benchmark/redis/src/main/java/org/springframework/data/microbenchmark/redis/ReactiveRedisTemplateBenchmark.java
+++ b/benchmark/redis/src/main/java/org/springframework/data/microbenchmark/redis/ReactiveRedisTemplateBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2021 the original author or authors.
+ * Copyright 2021-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/FixtureUtils.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/FixtureUtils.java
index 64c04a8..b276305 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/FixtureUtils.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/FixtureUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,14 +15,14 @@
*/
package org.springframework.data.microbenchmark;
+import lombok.experimental.UtilityClass;
+
import java.util.Arrays;
import java.util.Collections;
import org.springframework.boot.SpringApplication;
import org.springframework.context.ConfigurableApplicationContext;
-import lombok.experimental.UtilityClass;
-
@UtilityClass
public class FixtureUtils {
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/Book.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/Book.java
index 715836f..7b839bf 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/Book.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/Book.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcBenchmark.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcBenchmark.java
index f9ae76d..af55a8a 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcBenchmark.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcBookRepository.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcBookRepository.java
index faac854..1ab7ac3 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcBookRepository.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcBookRepository.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcFixture.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcFixture.java
index 72e6b48..254eea7 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcFixture.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jdbc/JdbcFixture.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,6 +15,8 @@
*/
package org.springframework.data.microbenchmark.jdbc;
+import lombok.Getter;
+
import java.lang.reflect.Field;
import org.springframework.aop.framework.Advised;
@@ -30,11 +32,9 @@ import org.springframework.data.microbenchmark.FixtureUtils;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.util.ReflectionUtils;
-import lombok.Getter;
-
/**
* Test fixture for JDBC and Spring Data JDBC benchmarks.
- *
+ *
* @author Oliver Drotbohm
*/
class JdbcFixture {
@@ -50,14 +50,14 @@ class JdbcFixture {
this.bookMapper = (rs, rowNum) -> new Book(rs.getLong("id"), rs.getString("title"), rs.getInt("pages"));
}
-
+
private static void disableEntityCallbacks(ApplicationContext context) {
-
+
JdbcBookRepository repository = context.getBean(JdbcBookRepository.class);
Field field = ReflectionUtils.findField(SimpleJdbcRepository.class, "entityOperations");
ReflectionUtils.makeAccessible(field);
-
+
try {
JdbcAggregateTemplate aggregateTemplate = (JdbcAggregateTemplate) ReflectionUtils.getField(field,
((Advised) repository).getTargetSource().getTarget());
@@ -65,9 +65,9 @@ class JdbcFixture {
field = ReflectionUtils.findField(JdbcAggregateTemplate.class, "publisher");
ReflectionUtils.makeAccessible(field);
ReflectionUtils.setField(field, aggregateTemplate, NoOpApplicationEventPublisher.INSTANCE);
-
+
aggregateTemplate.setEntityCallbacks(NoOpEntityCallbacks.INSTANCE);
-
+
} catch (Exception o_O) {
throw new RuntimeException(o_O);
}
@@ -83,11 +83,11 @@ class JdbcFixture {
@Override
public void publishEvent(Object event) {}
}
-
+
enum NoOpEntityCallbacks implements EntityCallbacks {
INSTANCE;
-
+
@Override
public void addEntityCallback(EntityCallback> callback) {}
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/Book.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/Book.java
index 3a8035b..114bb93 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/Book.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/Book.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaBenchmark.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaBenchmark.java
index 20b1314..0641bf9 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaBenchmark.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaBookRepository.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaBookRepository.java
index 16627ce..e0f6348 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaBookRepository.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaBookRepository.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaFixture.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaFixture.java
index 055439c..b02beca 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaFixture.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/jpa/JpaFixture.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/Book.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/Book.java
index 06b4ae6..cc35dd3 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/Book.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/Book.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcBenchmark.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcBenchmark.java
index 51d3270..e4eb785 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcBenchmark.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcBookRepository.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcBookRepository.java
index 0c43c3f..1319a03 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcBookRepository.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcBookRepository.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcFixture.java b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcFixture.java
index 0dc015b..2a7a92e 100644
--- a/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcFixture.java
+++ b/benchmark/relational/src/main/java/org/springframework/data/microbenchmark/r2dbc/R2dbcFixture.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/AbstractMicrobenchmark.java b/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/AbstractMicrobenchmark.java
index 6791b78..c39b2b4 100644
--- a/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/AbstractMicrobenchmark.java
+++ b/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/AbstractMicrobenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/HttpResultsWriter.java b/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/HttpResultsWriter.java
index ba5834b..df5d109 100644
--- a/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/HttpResultsWriter.java
+++ b/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/HttpResultsWriter.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/MicrobenchmarkResultsWriterFactory.java b/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/MicrobenchmarkResultsWriterFactory.java
index babed1d..0e61d70 100644
--- a/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/MicrobenchmarkResultsWriterFactory.java
+++ b/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/MicrobenchmarkResultsWriterFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/MongoResultsWriter.java b/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/MongoResultsWriter.java
index 059da41..d13ad0f 100644
--- a/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/MongoResultsWriter.java
+++ b/benchmark/support/src/main/java/org/springframework/data/microbenchmark/common/MongoResultsWriter.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/Application.java b/release-tools/src/main/java/org/springframework/data/release/Application.java
index 440a074..6bd62f0 100644
--- a/release-tools/src/main/java/org/springframework/data/release/Application.java
+++ b/release-tools/src/main/java/org/springframework/data/release/Application.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/CliComponent.java b/release-tools/src/main/java/org/springframework/data/release/CliComponent.java
index 28bb360..e5b01ef 100644
--- a/release-tools/src/main/java/org/springframework/data/release/CliComponent.java
+++ b/release-tools/src/main/java/org/springframework/data/release/CliComponent.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/CustomShellComponent.java b/release-tools/src/main/java/org/springframework/data/release/CustomShellComponent.java
index e3c0c8a..bbd4efa 100644
--- a/release-tools/src/main/java/org/springframework/data/release/CustomShellComponent.java
+++ b/release-tools/src/main/java/org/springframework/data/release/CustomShellComponent.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/TimedCommand.java b/release-tools/src/main/java/org/springframework/data/release/TimedCommand.java
index b6bbcbd..0dfd75d 100644
--- a/release-tools/src/main/java/org/springframework/data/release/TimedCommand.java
+++ b/release-tools/src/main/java/org/springframework/data/release/TimedCommand.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/announcement/AnnouncementCommands.java b/release-tools/src/main/java/org/springframework/data/release/announcement/AnnouncementCommands.java
index c3ef908..1b2d84a 100644
--- a/release-tools/src/main/java/org/springframework/data/release/announcement/AnnouncementCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/announcement/AnnouncementCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/announcement/AnnouncementOperations.java b/release-tools/src/main/java/org/springframework/data/release/announcement/AnnouncementOperations.java
index 2406ac2..2cc09dd 100644
--- a/release-tools/src/main/java/org/springframework/data/release/announcement/AnnouncementOperations.java
+++ b/release-tools/src/main/java/org/springframework/data/release/announcement/AnnouncementOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/BuildCommands.java b/release-tools/src/main/java/org/springframework/data/release/build/BuildCommands.java
index 568107c..194a278 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/BuildCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/BuildCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/BuildConfiguration.java b/release-tools/src/main/java/org/springframework/data/release/build/BuildConfiguration.java
index 3c877b6..346f6b3 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/BuildConfiguration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/BuildConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/BuildExecutor.java b/release-tools/src/main/java/org/springframework/data/release/build/BuildExecutor.java
index 8f0a889..5f78df8 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/BuildExecutor.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/BuildExecutor.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019-2020 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/BuildOperations.java b/release-tools/src/main/java/org/springframework/data/release/build/BuildOperations.java
index 875bd7f..9c03fea 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/BuildOperations.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/BuildOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/BuildSystem.java b/release-tools/src/main/java/org/springframework/data/release/build/BuildSystem.java
index d2e1185..1f77a7c 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/BuildSystem.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/BuildSystem.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/CommandLine.java b/release-tools/src/main/java/org/springframework/data/release/build/CommandLine.java
index 26a752c..0c7c58b 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/CommandLine.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/CommandLine.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/GroupId.java b/release-tools/src/main/java/org/springframework/data/release/build/GroupId.java
index 36ea2b7..0eba8be 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/GroupId.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/GroupId.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/MavenArtifact.java b/release-tools/src/main/java/org/springframework/data/release/build/MavenArtifact.java
index 4eae809..730a0d4 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/MavenArtifact.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/MavenArtifact.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import org.springframework.util.Assert;
/**
* Value object to represent a Maven artifact.
- *
+ *
* @author Oliver Gierke
*/
@EqualsAndHashCode
@@ -41,7 +41,7 @@ public class MavenArtifact {
/**
* Creates a new {@link MavenArtifact} for the given {@link ModuleIteration}.
- *
+ *
* @param module must not be {@literal null}.
*/
public MavenArtifact(ModuleIteration module) {
@@ -66,7 +66,7 @@ public class MavenArtifact {
/**
* Returns the Maven artifact identifier.
- *
+ *
* @return
*/
public String getArtifactId() {
@@ -82,7 +82,7 @@ public class MavenArtifact {
/**
* Returns the URL pointing to the artifacts.
- *
+ *
* @return
*/
public String getRootUrl() {
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/MavenBuildSystem.java b/release-tools/src/main/java/org/springframework/data/release/build/MavenBuildSystem.java
index 53c2911..880d77f 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/MavenBuildSystem.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/MavenBuildSystem.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/MavenProperties.java b/release-tools/src/main/java/org/springframework/data/release/build/MavenProperties.java
index dc1842c..4acc907 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/MavenProperties.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/MavenProperties.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/MavenRuntime.java b/release-tools/src/main/java/org/springframework/data/release/build/MavenRuntime.java
index 14b7844..a6b1354 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/MavenRuntime.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/MavenRuntime.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/ParentPom.java b/release-tools/src/main/java/org/springframework/data/release/build/ParentPom.java
index 7149572..17907ea 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/ParentPom.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/ParentPom.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/Pom.java b/release-tools/src/main/java/org/springframework/data/release/build/Pom.java
index 930bc09..28d7458 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/Pom.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/Pom.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/PomUpdater.java b/release-tools/src/main/java/org/springframework/data/release/build/PomUpdater.java
index 2c75176..d60ca06 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/PomUpdater.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/PomUpdater.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/Repository.java b/release-tools/src/main/java/org/springframework/data/release/build/Repository.java
index 64bd44c..4100aaa 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/Repository.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/Repository.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/build/UpdateInformation.java b/release-tools/src/main/java/org/springframework/data/release/build/UpdateInformation.java
index 2b5bb10..00b1ded 100644
--- a/release-tools/src/main/java/org/springframework/data/release/build/UpdateInformation.java
+++ b/release-tools/src/main/java/org/springframework/data/release/build/UpdateInformation.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/ModelCommands.java b/release-tools/src/main/java/org/springframework/data/release/cli/ModelCommands.java
index 11d6d7e..330e07a 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/ModelCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/ModelCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/ProjectConverter.java b/release-tools/src/main/java/org/springframework/data/release/cli/ProjectConverter.java
index 29e7d6c..435f776 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/ProjectConverter.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/ProjectConverter.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/ReleaseCommands.java b/release-tools/src/main/java/org/springframework/data/release/cli/ReleaseCommands.java
index e8a2676..96b7cc1 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/ReleaseCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/ReleaseCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/SpringDataReleaseCliBannerProvider.java b/release-tools/src/main/java/org/springframework/data/release/cli/SpringDataReleaseCliBannerProvider.java
index 138462f..12601de 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/SpringDataReleaseCliBannerProvider.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/SpringDataReleaseCliBannerProvider.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/SpringDataReleaseCliPromptProvider.java b/release-tools/src/main/java/org/springframework/data/release/cli/SpringDataReleaseCliPromptProvider.java
index 1052b7e..790f6bb 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/SpringDataReleaseCliPromptProvider.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/SpringDataReleaseCliPromptProvider.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/StaticResources.java b/release-tools/src/main/java/org/springframework/data/release/cli/StaticResources.java
index bd956b3..e8ed003 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/StaticResources.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/StaticResources.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/TrainConverter.java b/release-tools/src/main/java/org/springframework/data/release/cli/TrainConverter.java
index 8713adc..fe17326 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/TrainConverter.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/TrainConverter.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/TrainIterationConverter.java b/release-tools/src/main/java/org/springframework/data/release/cli/TrainIterationConverter.java
index 9d493b7..9b698aa 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/TrainIterationConverter.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/TrainIterationConverter.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/cli/VerifyCommands.java b/release-tools/src/main/java/org/springframework/data/release/cli/VerifyCommands.java
index 988e3c8..b048e61 100644
--- a/release-tools/src/main/java/org/springframework/data/release/cli/VerifyCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/cli/VerifyCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2021 the original author or authors.
+ * Copyright 2021-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/Dependencies.java b/release-tools/src/main/java/org/springframework/data/release/dependency/Dependencies.java
index 771156e..8f3d43e 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/Dependencies.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/Dependencies.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/Dependency.java b/release-tools/src/main/java/org/springframework/data/release/dependency/Dependency.java
index d7e3464..3607159 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/Dependency.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/Dependency.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyCommands.java b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyCommands.java
index c8867c2..9c883af 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyOperations.java b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyOperations.java
index 7e763b1..981544f 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyOperations.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradePolicy.java b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradePolicy.java
index f06dfa7..f42a60a 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradePolicy.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradePolicy.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2021 the original author or authors.
+ * Copyright 2021-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradeProposal.java b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradeProposal.java
index 0a606ee..9d7831e 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradeProposal.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradeProposal.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradeProposals.java b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradeProposals.java
index fee1c33..9ca4bb0 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradeProposals.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyUpgradeProposals.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyVersion.java b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyVersion.java
index f1a1252..6111a07 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyVersion.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyVersion.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyVersions.java b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyVersions.java
index e132d55..62df931 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyVersions.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/DependencyVersions.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/InfrastructureCommands.java b/release-tools/src/main/java/org/springframework/data/release/dependency/InfrastructureCommands.java
index 4118d58..230422a 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/InfrastructureCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/InfrastructureCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2021 the original author or authors.
+ * Copyright 2021-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/dependency/ProjectDependencies.java b/release-tools/src/main/java/org/springframework/data/release/dependency/ProjectDependencies.java
index 41c8472..1b209b3 100644
--- a/release-tools/src/main/java/org/springframework/data/release/dependency/ProjectDependencies.java
+++ b/release-tools/src/main/java/org/springframework/data/release/dependency/ProjectDependencies.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/deployment/ArtifactoryClient.java b/release-tools/src/main/java/org/springframework/data/release/deployment/ArtifactoryClient.java
index d6e7b68..0f56c61 100644
--- a/release-tools/src/main/java/org/springframework/data/release/deployment/ArtifactoryClient.java
+++ b/release-tools/src/main/java/org/springframework/data/release/deployment/ArtifactoryClient.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/deployment/ArtifactoryCommands.java b/release-tools/src/main/java/org/springframework/data/release/deployment/ArtifactoryCommands.java
index ceabbcf..7e537cc 100644
--- a/release-tools/src/main/java/org/springframework/data/release/deployment/ArtifactoryCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/deployment/ArtifactoryCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@ import org.springframework.shell.core.annotation.CliCommand;
/**
* Commands to interact with Artifactory.
- *
+ *
* @author Oliver Gierke
*/
@CliComponent
diff --git a/release-tools/src/main/java/org/springframework/data/release/deployment/DefaultDeploymentInformation.java b/release-tools/src/main/java/org/springframework/data/release/deployment/DefaultDeploymentInformation.java
index 57c6e4e..7551cca 100644
--- a/release-tools/src/main/java/org/springframework/data/release/deployment/DefaultDeploymentInformation.java
+++ b/release-tools/src/main/java/org/springframework/data/release/deployment/DefaultDeploymentInformation.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentConfiguration.java b/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentConfiguration.java
index a14c483..da88b6d 100644
--- a/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentConfiguration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentInformation.java b/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentInformation.java
index 9ccaa47..148cccf 100644
--- a/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentInformation.java
+++ b/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentInformation.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentOperations.java b/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentOperations.java
index f778ce3..e2b2f9a 100644
--- a/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentOperations.java
+++ b/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentProperties.java b/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentProperties.java
index b8294c0..f952e83 100644
--- a/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentProperties.java
+++ b/release-tools/src/main/java/org/springframework/data/release/deployment/DeploymentProperties.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -20,7 +20,6 @@ import lombok.Data;
import java.net.URI;
import org.springframework.boot.context.properties.ConfigurationProperties;
-import org.springframework.data.release.model.Gpg;
import org.springframework.data.release.model.Password;
import org.springframework.data.release.utils.HttpBasicCredentials;
import org.springframework.stereotype.Component;
diff --git a/release-tools/src/main/java/org/springframework/data/release/deployment/Errors.java b/release-tools/src/main/java/org/springframework/data/release/deployment/Errors.java
index 7c443fa..fa781a7 100644
--- a/release-tools/src/main/java/org/springframework/data/release/deployment/Errors.java
+++ b/release-tools/src/main/java/org/springframework/data/release/deployment/Errors.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/BackportTargets.java b/release-tools/src/main/java/org/springframework/data/release/git/BackportTargets.java
index a5f2b0c..54af987 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/BackportTargets.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/BackportTargets.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/Branch.java b/release-tools/src/main/java/org/springframework/data/release/git/Branch.java
index cfe47f3..6b0fc0e 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/Branch.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/Branch.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/Branches.java b/release-tools/src/main/java/org/springframework/data/release/git/Branches.java
index d89e140..48222c3 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/Branches.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/Branches.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/Commit.java b/release-tools/src/main/java/org/springframework/data/release/git/Commit.java
index c473a4d..6b819e0 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/Commit.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/Commit.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/GitCommands.java b/release-tools/src/main/java/org/springframework/data/release/git/GitCommands.java
index ab8ab2a..7485701 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/GitCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/GitCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/GitOperations.java b/release-tools/src/main/java/org/springframework/data/release/git/GitOperations.java
index ee5fbfb..5a0cf7d 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/GitOperations.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/GitOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/GitProject.java b/release-tools/src/main/java/org/springframework/data/release/git/GitProject.java
index 5c29abe..cf40f8e 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/GitProject.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/GitProject.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/GitProperties.java b/release-tools/src/main/java/org/springframework/data/release/git/GitProperties.java
index 5db48ac..74079db 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/GitProperties.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/GitProperties.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,7 +31,7 @@ import org.springframework.util.Assert;
/**
* Configurable properties for Git.
- *
+ *
* @author Oliver Gierke
* @author Mark Paluch
*/
@@ -54,7 +54,7 @@ public class GitProperties {
/**
* Returns the jGit {@link CredentialsProvider} to be used.
- *
+ *
* @return
*/
public CredentialsProvider getCredentials() {
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/GitServer.java b/release-tools/src/main/java/org/springframework/data/release/git/GitServer.java
index 56376ad..eb09a0f 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/GitServer.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/GitServer.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/ParsedCommitMessage.java b/release-tools/src/main/java/org/springframework/data/release/git/ParsedCommitMessage.java
index 6d12ca3..ba5e88d 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/ParsedCommitMessage.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/ParsedCommitMessage.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/Tag.java b/release-tools/src/main/java/org/springframework/data/release/git/Tag.java
index 2db4315..4e453b0 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/Tag.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/Tag.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/TicketBranches.java b/release-tools/src/main/java/org/springframework/data/release/git/TicketBranches.java
index edcc0c1..1c08bc9 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/TicketBranches.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/TicketBranches.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/git/VersionTags.java b/release-tools/src/main/java/org/springframework/data/release/git/VersionTags.java
index a4f62c2..25307be 100644
--- a/release-tools/src/main/java/org/springframework/data/release/git/VersionTags.java
+++ b/release-tools/src/main/java/org/springframework/data/release/git/VersionTags.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/io/CommandResult.java b/release-tools/src/main/java/org/springframework/data/release/io/CommandResult.java
index d99bef3..6cc5ea8 100644
--- a/release-tools/src/main/java/org/springframework/data/release/io/CommandResult.java
+++ b/release-tools/src/main/java/org/springframework/data/release/io/CommandResult.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/io/IoProperties.java b/release-tools/src/main/java/org/springframework/data/release/io/IoProperties.java
index 791283a..1fff619 100644
--- a/release-tools/src/main/java/org/springframework/data/release/io/IoProperties.java
+++ b/release-tools/src/main/java/org/springframework/data/release/io/IoProperties.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/io/JavaRuntimes.java b/release-tools/src/main/java/org/springframework/data/release/io/JavaRuntimes.java
index 51b3536..2866097 100644
--- a/release-tools/src/main/java/org/springframework/data/release/io/JavaRuntimes.java
+++ b/release-tools/src/main/java/org/springframework/data/release/io/JavaRuntimes.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2022 the original author or authors.
+ * Copyright 2022-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/io/Workspace.java b/release-tools/src/main/java/org/springframework/data/release/io/Workspace.java
index 55efbf6..e2cd713 100644
--- a/release-tools/src/main/java/org/springframework/data/release/io/Workspace.java
+++ b/release-tools/src/main/java/org/springframework/data/release/io/Workspace.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/io/WorkspaceCommands.java b/release-tools/src/main/java/org/springframework/data/release/io/WorkspaceCommands.java
index 859b920..e1bbcf9 100644
--- a/release-tools/src/main/java/org/springframework/data/release/io/WorkspaceCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/io/WorkspaceCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/Changelog.java b/release-tools/src/main/java/org/springframework/data/release/issues/Changelog.java
index ecb93aa..ec54c3d 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/Changelog.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/Changelog.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/IssueTracker.java b/release-tools/src/main/java/org/springframework/data/release/issues/IssueTracker.java
index 17e9cd7..2379586 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/IssueTracker.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/IssueTracker.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/IssueTrackerCommands.java b/release-tools/src/main/java/org/springframework/data/release/issues/IssueTrackerCommands.java
index 1b904b7..2b3e8d9 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/IssueTrackerCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/IssueTrackerCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/IssueTrackerConfiguration.java b/release-tools/src/main/java/org/springframework/data/release/issues/IssueTrackerConfiguration.java
index 21fa4ca..8159186 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/IssueTrackerConfiguration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/IssueTrackerConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/Ticket.java b/release-tools/src/main/java/org/springframework/data/release/issues/Ticket.java
index 4784933..ab07e73 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/Ticket.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/Ticket.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/TicketReference.java b/release-tools/src/main/java/org/springframework/data/release/issues/TicketReference.java
index c1912c2..939756b 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/TicketReference.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/TicketReference.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/TicketStatus.java b/release-tools/src/main/java/org/springframework/data/release/issues/TicketStatus.java
index bd72f78..40c2e95 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/TicketStatus.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/TicketStatus.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/Tickets.java b/release-tools/src/main/java/org/springframework/data/release/issues/Tickets.java
index 6186238..2b76737 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/Tickets.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/Tickets.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogGenerator.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogGenerator.java
index 130b66a..d617e4c 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogGenerator.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogGenerator.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogSection.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogSection.java
index 395424e..4ff7e10 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogSection.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogSection.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogSections.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogSections.java
index 5189fca..fabc3ef 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogSections.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/ChangelogSections.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHub.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHub.java
index 067c661..9c0e424 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHub.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHub.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubCommands.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubCommands.java
index e34b70f..be24477 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -30,7 +30,6 @@ import org.springframework.data.release.git.GitOperations;
import org.springframework.data.release.issues.IssueTracker;
import org.springframework.data.release.issues.TicketReference;
import org.springframework.data.release.model.Project;
-import org.springframework.data.release.model.Projects;
import org.springframework.data.release.model.Tracker;
import org.springframework.data.release.model.TrainIteration;
import org.springframework.data.release.utils.ExecutionUtils;
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubIssue.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubIssue.java
index 522078f..4a39f28 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubIssue.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubIssue.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubLabels.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubLabels.java
index f0a2221..e57fa96 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubLabels.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubLabels.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubMilestone.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubMilestone.java
index 7e1de82..e8e01ad 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubMilestone.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubMilestone.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubProperties.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubProperties.java
index cdaf7b3..6924b44 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubProperties.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubProperties.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubReadIssue.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubReadIssue.java
index e6d2c5f..d7754af 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubReadIssue.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubReadIssue.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubRelease.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubRelease.java
index e6acfe8..7fad4bd 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubRelease.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubRelease.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubSupport.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubSupport.java
index 930c330..d71da6c 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubSupport.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubSupport.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubUser.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubUser.java
index ce8e7f5..ebfb1f6 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubUser.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubUser.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018-2020 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubWriteIssue.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubWriteIssue.java
index 5d33f78..3422fe0 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubWriteIssue.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GitHubWriteIssue.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/GithubTicketStatus.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/GithubTicketStatus.java
index ca7ecda..2caea88 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/GithubTicketStatus.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/GithubTicketStatus.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@ import org.springframework.data.release.issues.TicketStatus;
/**
* Value object for a GitHub ticket status.
- *
+ *
* @author Mark Paluch
*/
@EqualsAndHashCode
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/Label.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/Label.java
index f4ec751..a53c4a1 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/Label.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/Label.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/LabelConfiguration.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/LabelConfiguration.java
index 207b3a6..61c1d1a 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/LabelConfiguration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/LabelConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/LabelFactories.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/LabelFactories.java
index 5575369..3c17fa8 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/LabelFactories.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/LabelFactories.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/Milestone.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/Milestone.java
index 79dc667..0358f9b 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/Milestone.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/Milestone.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/ProjectLabelConfiguration.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/ProjectLabelConfiguration.java
index 88931bb..8d7b3c9 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/ProjectLabelConfiguration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/ProjectLabelConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/github/PullRequest.java b/release-tools/src/main/java/org/springframework/data/release/issues/github/PullRequest.java
index a5518ef..bdd1004 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/github/PullRequest.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/github/PullRequest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018-2020 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/CreatedJiraIssue.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/CreatedJiraIssue.java
index 9ffde52..04a52df 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/CreatedJiraIssue.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/CreatedJiraIssue.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/Jira.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/Jira.java
index 8e3f4a6..ec80fe3 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/Jira.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/Jira.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2013-2020 the original author or authors.
+ * Copyright 2013-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraComponent.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraComponent.java
index 171c4d7..dd341db 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraComponent.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraComponent.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@ import lombok.Value;
/**
* Value object to bind REST responses to.
- *
+ *
* @author Mark Paluch
* @author Oliver Gierke
*/
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraComponents.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraComponents.java
index 83f2b56..9c3ab61 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraComponents.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraComponents.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraConnector.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraConnector.java
index c5c6c63..011bfb2 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraConnector.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraConnector.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2013-2020 the original author or authors.
+ * Copyright 2013-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssue.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssue.java
index 99fd67e..4f21574 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssue.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssue.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssueUpdate.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssueUpdate.java
index d6fbce3..ed878c0 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssueUpdate.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssueUpdate.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018-2020 the original author or authors.
+ * Copyright 2018-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssues.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssues.java
index 7b759b7..cf0ca44 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssues.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraIssues.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraProperties.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraProperties.java
index 1e76251..daf29da 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraProperties.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraProperties.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraReleaseVersion.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraReleaseVersion.java
index f852cd5..470a8ce 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraReleaseVersion.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraReleaseVersion.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraReleaseVersions.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraReleaseVersions.java
index 72a499c..7b6306d 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraReleaseVersions.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraReleaseVersions.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraTicketStatus.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraTicketStatus.java
index 8cde87a..ff6f769 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraTicketStatus.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraTicketStatus.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraVersion.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraVersion.java
index 72b9373..f4268e5 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraVersion.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JiraVersion.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JqlQuery.java b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JqlQuery.java
index 48f2dda..0dc3964 100644
--- a/release-tools/src/main/java/org/springframework/data/release/issues/jira/JqlQuery.java
+++ b/release-tools/src/main/java/org/springframework/data/release/issues/jira/JqlQuery.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/misc/ReleaseOperations.java b/release-tools/src/main/java/org/springframework/data/release/misc/ReleaseOperations.java
index 4b633e5..f9b5bba 100644
--- a/release-tools/src/main/java/org/springframework/data/release/misc/ReleaseOperations.java
+++ b/release-tools/src/main/java/org/springframework/data/release/misc/ReleaseOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/ArtifactCoordinate.java b/release-tools/src/main/java/org/springframework/data/release/model/ArtifactCoordinate.java
index cdf2d2d..794d838 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/ArtifactCoordinate.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/ArtifactCoordinate.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/ArtifactCoordinates.java b/release-tools/src/main/java/org/springframework/data/release/model/ArtifactCoordinates.java
index 0f657ec..bee4221 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/ArtifactCoordinates.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/ArtifactCoordinates.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/ArtifactVersion.java b/release-tools/src/main/java/org/springframework/data/release/model/ArtifactVersion.java
index e16ddd4..3148959 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/ArtifactVersion.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/ArtifactVersion.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/DocumentationMetadata.java b/release-tools/src/main/java/org/springframework/data/release/model/DocumentationMetadata.java
index 33bf4d1..f1562e8 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/DocumentationMetadata.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/DocumentationMetadata.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Gpg.java b/release-tools/src/main/java/org/springframework/data/release/model/Gpg.java
index 962de17..30ad27e 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Gpg.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Gpg.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Iteration.java b/release-tools/src/main/java/org/springframework/data/release/model/Iteration.java
index 6ffbcb1..d7ff8b8 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Iteration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Iteration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/IterationVersion.java b/release-tools/src/main/java/org/springframework/data/release/model/IterationVersion.java
index 9fdef55..a000595 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/IterationVersion.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/IterationVersion.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@ package org.springframework.data.release.model;
/**
* A {@link Version} tied to an {@link Iteration}.
- *
+ *
* @author Oliver Gierke
* @author Mark Paluch
*/
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/JavaVersion.java b/release-tools/src/main/java/org/springframework/data/release/model/JavaVersion.java
index 1f6ac50..9c673bf 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/JavaVersion.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/JavaVersion.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2022 the original author or authors.
+ * Copyright 2022-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/JavaVersionAware.java b/release-tools/src/main/java/org/springframework/data/release/model/JavaVersionAware.java
index a6411ba..b48d9a4 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/JavaVersionAware.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/JavaVersionAware.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2022 the original author or authors.
+ * Copyright 2022-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Masked.java b/release-tools/src/main/java/org/springframework/data/release/model/Masked.java
index 3c90220..94474ea 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Masked.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Masked.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Module.java b/release-tools/src/main/java/org/springframework/data/release/model/Module.java
index bd2450a..15b811b 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Module.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Module.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/ModuleIteration.java b/release-tools/src/main/java/org/springframework/data/release/model/ModuleIteration.java
index c67c201..d863dd4 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/ModuleIteration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/ModuleIteration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Modules.java b/release-tools/src/main/java/org/springframework/data/release/model/Modules.java
index fd9e56c..a8139e2 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Modules.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Modules.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Password.java b/release-tools/src/main/java/org/springframework/data/release/model/Password.java
index ebef886..29698ed 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Password.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Password.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@ import org.springframework.util.Assert;
/**
* Value object to represent a password.
- *
+ *
* @author Oliver Gierke
*/
@Value
@@ -37,7 +37,7 @@ public class Password implements Masked {
/**
* Create a new {@link Password} for the given value.
- *
+ *
* @param password
* @return
*/
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Phase.java b/release-tools/src/main/java/org/springframework/data/release/model/Phase.java
index 2a1e0d9..ad8c2c8 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Phase.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Phase.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Project.java b/release-tools/src/main/java/org/springframework/data/release/model/Project.java
index 3eacc53..8fb4c36 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Project.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Project.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/ProjectAware.java b/release-tools/src/main/java/org/springframework/data/release/model/ProjectAware.java
index f4877f1..48c706f 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/ProjectAware.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/ProjectAware.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019-2020 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/ProjectKey.java b/release-tools/src/main/java/org/springframework/data/release/model/ProjectKey.java
index 378b83f..bd86b11 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/ProjectKey.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/ProjectKey.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2013-2020 the original author or authors.
+ * Copyright 2013-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Projects.java b/release-tools/src/main/java/org/springframework/data/release/model/Projects.java
index b01f9ea..9cfa973 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Projects.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Projects.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Release.java b/release-tools/src/main/java/org/springframework/data/release/model/Release.java
index d492328..4cda386 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Release.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Release.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2013-2020 the original author or authors.
+ * Copyright 2013-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/ReleaseTrains.java b/release-tools/src/main/java/org/springframework/data/release/model/ReleaseTrains.java
index dc647cf..0083a52 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/ReleaseTrains.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/ReleaseTrains.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Tracker.java b/release-tools/src/main/java/org/springframework/data/release/model/Tracker.java
index 9d1f0bd..2e9180c 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Tracker.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Tracker.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Train.java b/release-tools/src/main/java/org/springframework/data/release/model/Train.java
index 97f7022..4aac8b6 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Train.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Train.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/TrainIteration.java b/release-tools/src/main/java/org/springframework/data/release/model/TrainIteration.java
index 26c2008..505a5d5 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/TrainIteration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/TrainIteration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Transition.java b/release-tools/src/main/java/org/springframework/data/release/model/Transition.java
index 5af21b0..702abad 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/Transition.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/Transition.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/model/VersionAware.java b/release-tools/src/main/java/org/springframework/data/release/model/VersionAware.java
index fa4067e..f1dcdfb 100644
--- a/release-tools/src/main/java/org/springframework/data/release/model/VersionAware.java
+++ b/release-tools/src/main/java/org/springframework/data/release/model/VersionAware.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/DefaultSaganClient.java b/release-tools/src/main/java/org/springframework/data/release/sagan/DefaultSaganClient.java
index de966df..066af91 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/DefaultSaganClient.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/DefaultSaganClient.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/DummySaganClient.java b/release-tools/src/main/java/org/springframework/data/release/sagan/DummySaganClient.java
index 8a7ae3e..b56d4ae 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/DummySaganClient.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/DummySaganClient.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/MaintainedVersion.java b/release-tools/src/main/java/org/springframework/data/release/sagan/MaintainedVersion.java
index 07ef829..b5f0e15 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/MaintainedVersion.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/MaintainedVersion.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/ProjectMetadata.java b/release-tools/src/main/java/org/springframework/data/release/sagan/ProjectMetadata.java
index b92c9fc..c33fd0f 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/ProjectMetadata.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/ProjectMetadata.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganClient.java b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganClient.java
index b3da5a8..0293b91 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganClient.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganClient.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganCommands.java b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganCommands.java
index 88200cb..9499acf 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganCommands.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganCommands.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganConfiguration.java b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganConfiguration.java
index 311ff63..b2a5de6 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganConfiguration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganOperations.java b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganOperations.java
index d603c6d..b1ff794 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganOperations.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganProperties.java b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganProperties.java
index b6fe656..7019f1e 100644
--- a/release-tools/src/main/java/org/springframework/data/release/sagan/SaganProperties.java
+++ b/release-tools/src/main/java/org/springframework/data/release/sagan/SaganProperties.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/utils/ExecutionUtils.java b/release-tools/src/main/java/org/springframework/data/release/utils/ExecutionUtils.java
index be5ae44..7e507e8 100644
--- a/release-tools/src/main/java/org/springframework/data/release/utils/ExecutionUtils.java
+++ b/release-tools/src/main/java/org/springframework/data/release/utils/ExecutionUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/utils/ExecutorConfiguration.java b/release-tools/src/main/java/org/springframework/data/release/utils/ExecutorConfiguration.java
index c555c56..d563b4e 100644
--- a/release-tools/src/main/java/org/springframework/data/release/utils/ExecutorConfiguration.java
+++ b/release-tools/src/main/java/org/springframework/data/release/utils/ExecutorConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/utils/HttpBasicCredentials.java b/release-tools/src/main/java/org/springframework/data/release/utils/HttpBasicCredentials.java
index 967a6af..ba487bc 100644
--- a/release-tools/src/main/java/org/springframework/data/release/utils/HttpBasicCredentials.java
+++ b/release-tools/src/main/java/org/springframework/data/release/utils/HttpBasicCredentials.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/utils/ListWrapperCollector.java b/release-tools/src/main/java/org/springframework/data/release/utils/ListWrapperCollector.java
index 17a76d5..59b54ed 100644
--- a/release-tools/src/main/java/org/springframework/data/release/utils/ListWrapperCollector.java
+++ b/release-tools/src/main/java/org/springframework/data/release/utils/ListWrapperCollector.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/utils/Logger.java b/release-tools/src/main/java/org/springframework/data/release/utils/Logger.java
index 0114ddb..1e173ab 100644
--- a/release-tools/src/main/java/org/springframework/data/release/utils/Logger.java
+++ b/release-tools/src/main/java/org/springframework/data/release/utils/Logger.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/main/java/org/springframework/data/release/utils/StreamUtils.java b/release-tools/src/main/java/org/springframework/data/release/utils/StreamUtils.java
index f61fd35..e98a4ca 100644
--- a/release-tools/src/main/java/org/springframework/data/release/utils/StreamUtils.java
+++ b/release-tools/src/main/java/org/springframework/data/release/utils/StreamUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/AbstractIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/AbstractIntegrationTests.java
index c7f0f65..9f47e37 100644
--- a/release-tools/src/test/java/org/springframework/data/release/AbstractIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/AbstractIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/ApplicationTests.java b/release-tools/src/test/java/org/springframework/data/release/ApplicationTests.java
index 23c1373..b767106 100644
--- a/release-tools/src/test/java/org/springframework/data/release/ApplicationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/ApplicationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/ArtifactUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/ArtifactUnitTests.java
index 33e170e..bf497ec 100644
--- a/release-tools/src/test/java/org/springframework/data/release/ArtifactUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/ArtifactUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/WireMockExtension.java b/release-tools/src/test/java/org/springframework/data/release/WireMockExtension.java
index 02e8987..f400498 100644
--- a/release-tools/src/test/java/org/springframework/data/release/WireMockExtension.java
+++ b/release-tools/src/test/java/org/springframework/data/release/WireMockExtension.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/build/ArgumentUnitTest.java b/release-tools/src/test/java/org/springframework/data/release/build/ArgumentUnitTest.java
index 4b9aa80..98844e3 100644
--- a/release-tools/src/test/java/org/springframework/data/release/build/ArgumentUnitTest.java
+++ b/release-tools/src/test/java/org/springframework/data/release/build/ArgumentUnitTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/build/MavenIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/build/MavenIntegrationTests.java
index 23ce4ea..9a0a612 100644
--- a/release-tools/src/test/java/org/springframework/data/release/build/MavenIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/build/MavenIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/build/MavenPropertiesUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/build/MavenPropertiesUnitTests.java
index 60be935..afb561e 100644
--- a/release-tools/src/test/java/org/springframework/data/release/build/MavenPropertiesUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/build/MavenPropertiesUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/build/UpdateInformationUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/build/UpdateInformationUnitTests.java
index 8016e61..d55ae0c 100644
--- a/release-tools/src/test/java/org/springframework/data/release/build/UpdateInformationUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/build/UpdateInformationUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/cli/ReleaseCommandsIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/cli/ReleaseCommandsIntegrationTests.java
index 96c1534..d7f60a9 100644
--- a/release-tools/src/test/java/org/springframework/data/release/cli/ReleaseCommandsIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/cli/ReleaseCommandsIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyOperationsIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyOperationsIntegrationTests.java
index caf6985..00d74a7 100644
--- a/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyOperationsIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyOperationsIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyOperationsUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyOperationsUnitTests.java
index 4c7be94..8d72e69 100644
--- a/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyOperationsUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyOperationsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyUpgradeProposalsUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyUpgradeProposalsUnitTests.java
index 5628b02..a31244b 100644
--- a/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyUpgradeProposalsUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyUpgradeProposalsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyVersionUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyVersionUnitTests.java
index af9e02f..cb69e52 100644
--- a/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyVersionUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/dependency/DependencyVersionUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentInformationIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentInformationIntegrationTests.java
index cb23b9a..46df1d1 100644
--- a/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentInformationIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentInformationIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentOperationsIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentOperationsIntegrationTests.java
index 9d35e2b..0e7a6c5 100644
--- a/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentOperationsIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentOperationsIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentOperationsUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentOperationsUnitTests.java
index f03757a..dd90839 100644
--- a/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentOperationsUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/deployment/DeploymentOperationsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019-2020 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/git/BackportTargetsUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/git/BackportTargetsUnitTests.java
index 1d2f03d..d7cf341 100644
--- a/release-tools/src/test/java/org/springframework/data/release/git/BackportTargetsUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/git/BackportTargetsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/git/BranchUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/git/BranchUnitTests.java
index 482b30a..445483e 100644
--- a/release-tools/src/test/java/org/springframework/data/release/git/BranchUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/git/BranchUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/git/CommitUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/git/CommitUnitTests.java
index 18f84c5..b452464 100644
--- a/release-tools/src/test/java/org/springframework/data/release/git/CommitUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/git/CommitUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/git/GitOperationsIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/git/GitOperationsIntegrationTests.java
index a959300..f0a9170 100644
--- a/release-tools/src/test/java/org/springframework/data/release/git/GitOperationsIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/git/GitOperationsIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/git/GitProjectUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/git/GitProjectUnitTests.java
index 9042137..ffeab2c 100644
--- a/release-tools/src/test/java/org/springframework/data/release/git/GitProjectUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/git/GitProjectUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/git/GitPropertiesIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/git/GitPropertiesIntegrationTests.java
index 447bba3..3b5ab5c 100644
--- a/release-tools/src/test/java/org/springframework/data/release/git/GitPropertiesIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/git/GitPropertiesIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/git/ParsedCommitMessageUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/git/ParsedCommitMessageUnitTests.java
index 947a0d3..753381c 100644
--- a/release-tools/src/test/java/org/springframework/data/release/git/ParsedCommitMessageUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/git/ParsedCommitMessageUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/git/VersionTagsUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/git/VersionTagsUnitTests.java
index 257b667..a3be475 100644
--- a/release-tools/src/test/java/org/springframework/data/release/git/VersionTagsUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/git/VersionTagsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/io/IoPropertiesIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/io/IoPropertiesIntegrationTests.java
index 6ee3e0a..6ae3dfa 100644
--- a/release-tools/src/test/java/org/springframework/data/release/io/IoPropertiesIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/io/IoPropertiesIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/io/JdkUtilityTests.java b/release-tools/src/test/java/org/springframework/data/release/io/JdkUtilityTests.java
index 705a654..2c71ea3 100644
--- a/release-tools/src/test/java/org/springframework/data/release/io/JdkUtilityTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/io/JdkUtilityTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2022 the original author or authors.
+ * Copyright 2022-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/issues/github/GitHubIssueTrackerIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/issues/github/GitHubIssueTrackerIntegrationTests.java
index b89d13f..af41120 100644
--- a/release-tools/src/test/java/org/springframework/data/release/issues/github/GitHubIssueTrackerIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/issues/github/GitHubIssueTrackerIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/issues/github/GitHubIssueUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/issues/github/GitHubIssueUnitTests.java
index b85da71..192aea0 100644
--- a/release-tools/src/test/java/org/springframework/data/release/issues/github/GitHubIssueUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/issues/github/GitHubIssueUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2019-2020 the original author or authors.
+ * Copyright 2019-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/issues/github/GithubMilestoneUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/issues/github/GithubMilestoneUnitTests.java
index 7c87c39..dc914a5 100644
--- a/release-tools/src/test/java/org/springframework/data/release/issues/github/GithubMilestoneUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/issues/github/GithubMilestoneUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraComponentsUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraComponentsUnitTests.java
index d020afa..a6bf1e7 100644
--- a/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraComponentsUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraComponentsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraConnectorIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraConnectorIntegrationTests.java
index 74d606f..9d0475a 100644
--- a/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraConnectorIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraConnectorIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraVersionUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraVersionUnitTests.java
index 7ffc48f..4d5de42 100644
--- a/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraVersionUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/issues/jira/JiraVersionUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/issues/jira/TicketsUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/issues/jira/TicketsUnitTests.java
index 3668f68..1a68459 100644
--- a/release-tools/src/test/java/org/springframework/data/release/issues/jira/TicketsUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/issues/jira/TicketsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/misc/ReleaseOperationsIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/misc/ReleaseOperationsIntegrationTests.java
index fda4197..cbf77b7 100644
--- a/release-tools/src/test/java/org/springframework/data/release/misc/ReleaseOperationsIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/misc/ReleaseOperationsIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2020 the original author or authors.
+ * Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/ArtifactVersionUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/model/ArtifactVersionUnitTests.java
index 486d6a1..157ec5e 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/ArtifactVersionUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/ArtifactVersionUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@ import org.junit.jupiter.api.Test;
/**
* Unit tests for {@link ArtifactVersion}.
- *
+ *
* @author Oliver Gierke
*/
class ArtifactVersionUnitTests {
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/DocumentationMetadataUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/model/DocumentationMetadataUnitTests.java
index ca3e063..cdaa052 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/DocumentationMetadataUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/DocumentationMetadataUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2021 the original author or authors.
+ * Copyright 2021-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/IterationUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/model/IterationUnitTests.java
index baeae10..36fa1ca 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/IterationUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/IterationUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@ import org.junit.jupiter.api.Test;
/**
* Unit tests for {@link Iteration}.
- *
+ *
* @author Mark Paluch
*/
class IterationUnitTests {
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/ModuleIterationUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/model/ModuleIterationUnitTests.java
index b71ea23..bf2a554 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/ModuleIterationUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/ModuleIterationUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/ProjectUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/model/ProjectUnitTests.java
index 516b31d..d537e13 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/ProjectUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/ProjectUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/SimpleIterationVersion.java b/release-tools/src/test/java/org/springframework/data/release/model/SimpleIterationVersion.java
index a6de335..aa37d88 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/SimpleIterationVersion.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/SimpleIterationVersion.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2014-2020 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/TestReleaseTrains.java b/release-tools/src/test/java/org/springframework/data/release/model/TestReleaseTrains.java
index 5a2f134..b8745fe 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/TestReleaseTrains.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/TestReleaseTrains.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@ import java.util.Arrays;
/**
* Sample release {@link Train} definitions.
- *
+ *
* @author Oliver Gierke
*/
public class TestReleaseTrains {
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/TrackerTest.java b/release-tools/src/test/java/org/springframework/data/release/model/TrackerTest.java
index 4cbd341..7dbe076 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/TrackerTest.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/TrackerTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/model/TrainsUnitTest.java b/release-tools/src/test/java/org/springframework/data/release/model/TrainsUnitTest.java
index 53a6783..9e75b70 100644
--- a/release-tools/src/test/java/org/springframework/data/release/model/TrainsUnitTest.java
+++ b/release-tools/src/test/java/org/springframework/data/release/model/TrainsUnitTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2020 the original author or authors.
+ * Copyright 2015-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/sagan/MaintainedVersionUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/sagan/MaintainedVersionUnitTests.java
index 6a429af..77eeaac 100644
--- a/release-tools/src/test/java/org/springframework/data/release/sagan/MaintainedVersionUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/sagan/MaintainedVersionUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/sagan/MaintainedVersionsUnitTests.java b/release-tools/src/test/java/org/springframework/data/release/sagan/MaintainedVersionsUnitTests.java
index 8901490..0e394a9 100644
--- a/release-tools/src/test/java/org/springframework/data/release/sagan/MaintainedVersionsUnitTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/sagan/MaintainedVersionsUnitTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/sagan/ProjectMetadataSerializationTests.java b/release-tools/src/test/java/org/springframework/data/release/sagan/ProjectMetadataSerializationTests.java
index 7b1c654..8b77cc4 100644
--- a/release-tools/src/test/java/org/springframework/data/release/sagan/ProjectMetadataSerializationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/sagan/ProjectMetadataSerializationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/java/org/springframework/data/release/sagan/SaganOperationsIntegrationTests.java b/release-tools/src/test/java/org/springframework/data/release/sagan/SaganOperationsIntegrationTests.java
index fb1dc11..436a2d0 100644
--- a/release-tools/src/test/java/org/springframework/data/release/sagan/SaganOperationsIntegrationTests.java
+++ b/release-tools/src/test/java/org/springframework/data/release/sagan/SaganOperationsIntegrationTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017-2020 the original author or authors.
+ * Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/release-tools/src/test/resources/parent-pom.xml b/release-tools/src/test/resources/parent-pom.xml
index 0da9f60..5c3416f 100644
--- a/release-tools/src/test/resources/parent-pom.xml
+++ b/release-tools/src/test/resources/parent-pom.xml
@@ -60,17 +60,17 @@
Apache License, Version 2.0
https://www.apache.org/licenses/LICENSE-2.0
- Copyright 2008-2017 the original author or authors.
+ Copyright 2008-2022 the original author or authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
+ https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied.
See the License for the specific language governing permissions and
limitations under the License.